haikuwebkit/LayoutTests/fast/repaint/lines-with-layout-delta.html

18 lines
520 B
HTML

<head>
<script src="resources/repaint.js" type="text/javascript"></script>
<script type="text/javascript">
function repaintTest()
{
document.getElementById("target").firstChild.textContent="PASS";
}
</script>
</head>
<body onload="runRepaintTest()">
<div style="float: left; height: 50px; width: 50px;"></div>
<div style="clear: left;">
<div id="target" style="overflow: hidden; float: left; width: 200px;">
FAIL
</div>
</div>
</body>