blob: 658017f4c33a8100f3597ea2ee90c34458e84cd9 [file] [log] [blame]
<html>
<head>
<style>
body {
overflow: hidden;
background-color: green;
}
iframe {
position: absolute;
width: 400px;
height: 400px;
left: 0px;
top: 200px;
border: 0px;
}
</style>
<script>
function runTest() {
var iframe = document.getElementsByTagName("iframe")[0];
iframe.contentWindow.scrollTo(0, 250);
}
window.addEventListener("load", runTest, false);
</script>
</head>
<body>
<iframe src="resources/has-composited-iframe-child.html"></iframe>
</body>
</html>