blob: 3bda2a8f47367c0deda6a78ff449d67d40c77a4b [file] [log] [blame]
<!DOCTYPE html> <!-- webkit-test-runner [ AsyncOverflowScrollingEnabled=true ]-->
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
.scrollable {
overflow: auto;
width: 400px;
height: 200px;
}
</style>
Test passes if it does not crash.
<div id="overflowNode" class="scrollable">
<div style="width: 2000px; height: 1000px;">
</div>
</div>
<script>
if (window.testRunner)
testRunner.dumpAsText();
document.getElementById('overflowNode').scrollTo(500, 250);
</script>
</html>