blob: 60d671440629884185af4b73db2b348ee7c05a72 [file] [log] [blame]
<script src="../resources/text-based-repaint.js"></script>
<body onload="runRepaintAndPixelTest()">
<div id="target" style="width: 100px; height: 100px; white-space:pre; overflow: hidden;"> FAIL .</div>
<script>
var target = document.getElementById("target");
target.scrollLeft = 100;
function repaintTest()
{
target.innerText = " PASS .";
}
</script>