blob: 357f81f03b93c6cf3c1bbc66a9fe77fe616ee557 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<script src="resources/text-based-repaint.js"></script>
<body onload="runRepaintTest()">
<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>
|