blob: c3913cb7dfad9b221a9def08a7140fc0258a06c2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<head>
<script src="resources/text-based-repaint.js"></script>
<script>
function repaintTest()
{
document.getElementById("target").style.backgroundColor = "transparent";
}
</script>
</head>
<body onload="runRepaintTest();">
<table cellpadding=1 cellspacing=0>
<tr>
<td>
<div style="width: 100px;">
<div style="width: 100px; height: 100px; background-color: blue; margin-left: 50px;"></div>
</div>
</td>
<td>
<div style="width: 100px; height: 100px; background-color: red;" id="target"></div>
</td>
</tr>
</table>
</body>
|