blob: 90ee322369635f506f0b76db2a91992f383d3371 [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 scroll event listeners still work after going back to a page in the page cache.');
function testScrollListener()
{
window.scrollTo(0, 10);
}
var scrollEventCount = 0;
window.addEventListener('scroll', function(e) {
++scrollEventCount;
debug('Received scroll event ' + scrollEventCount);
window.setTimeout(function() {
shouldBe('scrollEventCount', '1');
finishJSTest();
}, 10);
}, false);
function onPageLoad()
{
testScrollListener();
};
window.addEventListener('load', onPageLoad, false);
var successfullyParsed = true;
var jsTestIsAsync = true;
</script>
<script src="../../../resources/js-test-post.js"></script>
</body>
</html>