blob: 2ea5eebfe24710f15bef1e768f91bedc39c560e7 [file] [log] [blame]
<head>
<script src="resources/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>