blob: 8d92a70cbe6d34f80d076b1404beccb9758ff733 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<title>Self painting layers</title>
<style type="text/css" media="screen">
#container {
width: 300px;
margin: 10px;
border: 1px solid black;
}
#details {
width: 300px;
height: 150px;
margin: 10px;
overflow: auto;
border: 1px solid black;
}
#details > div {
width: 100%;
height: 500px;
font-size: 24pt;
line-height: 150%;
}
</style>
<script src="resources/media-testing.js"></script>
<script type="text/javascript" charset="utf-8">
function testDone()
{
document.getElementById('details').scrollTop = 24;
if (window.testRunner)
testRunner.notifyDone();
}
function doTest()
{
var video = document.getElementsByTagName('video')[0];
setupVideo(video, 'resources/video.ogv', testDone);
}
</script>
</head>
<body onload="doTest()">
<p>You should not see double text when the div scrolls</p>
<div id="container">
<video id="video" width="300" height="200"></video>
</div>
<div id="details">
<div>
Scrolled<br>text<br>here.
</div>
</div>
</body>
</html>