summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/forms/checkbox/checkbox-appearance-change-by-checked.html
blob: 039d4fa8c274d55be2899c2836bf3953ee3ab4e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE html>

<input type=checkbox>

<script>
var checkbox = document.getElementsByTagName('input')[0];
checkbox.offsetTop;
if (window.testRunner)
    testRunner.waitUntilDone();
setTimeout(function() {
    checkbox.checked = true;
    if (window.testRunner)
        testRunner.notifyDone();
}, 0);
</script>