blob: 8f136d3b6f3e9e76f313ca4b500f71b53308cd82 [file] [log] [blame]
<!DOCTYPE html> <!-- webkit-test-runner [ useFlexibleViewport=true AsyncFrameScrollingEnabled=true ] -->
<html>
<head>
<meta name="viewport" content="width=device-width">
<style>
iframe {
position: relative;
border: 1px solid black;
width: 300px;
height: 300px;
}
</style>
<script>
function doTest()
{
let iframe = document.getElementById('test-frame');
iframe.contentDocument.scrollingElement.scrollTop = 300;
}
window.addEventListener('load', doTest, false);
</script>
</head>
<body>
<iframe id="test-frame" srcdoc="
<style>
body {
height: 2000px;
margin: 0;
}
.box {
margin-top: 300px;
width: 300px;
height: 300px;
background-color: green;
}
</style>
<body>
<div class='box'></div>
</body>
">
</body>
</html>