blob: c31cab5578a7d391e79af9101f5c3f24e3b6345c [file] [log] [blame]
<!DOCTYPE HTML>
<html>
<head>
<script src="../resources/text-based-repaint.js"></script>
<script>
function repaintTest()
{
document.getElementById("inner").style.width = "0";
}
</script>
</head>
<body onload="runRepaintAndPixelTest()">
<div style="float: left; overflow: hidden; width: 100px; height: 100px; background-color: green;">
<div id="inner" style="width: 100px; height: 100px; background-color: red;"></div>
</div>
</body>
</html>