blob: 51699880b412b82321632d37787a286162c1215e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<!DOCTYPE html>
<script src="resources/text-based-repaint.js"></script>
<script>
function repaintTest()
{
document.getElementById('button').click();
document.getElementById('checkbox').click();
}
window.onload = runRepaintTest;
</script>
<style>
#button {
width: 100px;
height: 50px;
}
#checkbox {
width: 30px;
height: 30px;
}
</style>
<button id="button">Button</button><br>
<input id="checkbox" type="checkbox">
|