summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/overflow/horizontal-scroll-after-back.html
blob: 8a6799b0f50b2315a211832c58e9c3707c999c64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<html>
<script>

// Navigation steps
// 1. loads this page and it has a horizontal scrollbar
// 2. Navigates to a data URL and navigates back
function verifyPage()
{
    var result = (innerHeight === document.documentElement.offsetHeight)
        ? "FAIL: Scrollbar did not appear"
        : "PASS";
    document.body.innerHTML = result;
    if (window.testRunner)
            testRunner.notifyDone();
}

function navigateAwayAndBack() 
{
    // Simulate a link click to create a history entry
    var evt = document.createEvent("MouseEvents");
    evt.initMouseEvent("click", true, true, window,
      0, 0, 0, 0, 0, false, false, false, false, 0, null);
    document.getElementById('anchor').dispatchEvent(evt);
}

function runTestStep() 
{
    if (window.testRunner) {
        testRunner.dumpAsText();
        testRunner.waitUntilDone();
        testRunner.overridePreference("WebKitUsesPageCachePreferenceKey", 1);
    }
    window.setTimeout("navigateAwayAndBack()", 200);
}

function onVerifyPage(evt)
{
    // If pageshow is happening as result of navigation back then we proceed.
    if (evt.persisted)
        setTimeout("verifyPage()", 200);
}

window.onpageshow = onVerifyPage;
</script>
<head>
<style type="text/css">
<!--
#content {
  background: #fff;
  position: absolute;
  top: 2px;
  left: 2px;
  width: 1500px;
  height: 1500px;
}
-->
</style>
</head>
<body onload='runTestStep()'>
<div id="content"> <a id='anchor' href='data:text/html,<body onload="history.back()"></body>'>Where is the scrollbar?</a></div>
</body>
</html>