blob: 77bcfc3243dab3708f5cc58c6680823f9ce951d7 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<script src="../../../resources/js-test-pre.js"></script>
<style>
body {
height: 2000px;
}
</style>
</head>
<body>
<p id="description"></p>
<div id="console"></div>
<script>
description('Tests that programmatic scrolling works at page load time.');
var scrollEventCount = 0;
window.addEventListener('scroll', function(e) {
++scrollEventCount;
debug('Received scroll event ' + scrollEventCount);
}, false);
// window.scrollTo(0, 0);
function onPageLoad()
{
window.scrollTo(0, 10);
window.setTimeout(function() {
shouldBe('scrollEventCount', '1');
shouldBe('window.scrollY', '10');
finishJSTest();
}, 10); // Scroll events are async.
};
window.addEventListener('load', onPageLoad, false);
var successfullyParsed = true;
var jsTestIsAsync = true;
</script>
<script src="../../../resources/js-test-post.js"></script>
</body>
</html>