summaryrefslogtreecommitdiffstats
path: root/layout/base/tests/test_frame_reconstruction_scroll_restore.html
blob: a5115bb694168ab24f2807afe8db928d3e95201d (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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=1268195
-->
<head>
  <meta charset="utf-8">
  <title>Test for Bug 1268195</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
  <style>
    html, body {
        margin: 0;
        padding: 0;
    }

    .noscroll {
        overflow: hidden;
        height: 100%;
    }

    /* Toggling this on and off triggers a frame reconstruction on the <body> */
    html.reconstruct-body::before {
        top: 0;
        content: '';
        display: block;
        height: 2px;
        position: absolute;
        width: 100%;
        z-index: 99;
    }
  </style>
  <script type="application/javascript">
    SimpleTest.waitForExplicitFinish();

    function run() {
        // Make sure we have the right scroll element
        SimpleTest.is(document.body.scrollTopMax > 0, true, "Body is the scrolling element");

        // Scroll to the bottom
        document.body.scrollTop = document.body.scrollTopMax;
        SimpleTest.is(document.body.scrollTop > 0, true, "Scrolled body");

        // Do a frame reconstruction on the body while also shortening the
        // height, but still keep it long enough to be scrollable.
        document.body.classList.toggle('noscroll');
        document.documentElement.classList.toggle('reconstruct-body');
        document.getElementById('spacer').style.height = '1000px';
        var reducedMax = document.body.scrollTopMax;
        SimpleTest.is(document.body.scrollTop, reducedMax, `Scroll forced to new bottom ${reducedMax}`);

        // Do another frame reconstruction while lengthening the height again.
        document.body.classList.toggle('noscroll');
        document.documentElement.classList.toggle('reconstruct-body');
        document.getElementById('spacer').style.height = '5000px';
        SimpleTest.is(document.body.scrollTop, reducedMax, "Scroll remained at reduced height");

        // Do a frame reconstruction on the body while also shortening the
        // height, this time down to a non-scrollable height.
        document.body.classList.toggle('noscroll');
        document.documentElement.classList.toggle('reconstruct-body');
        document.getElementById('spacer').style.height = '1px';
        SimpleTest.is(document.body.scrollTop, 0, "Scroll forced to top");

        // Do another frame reconstruction while lengthening the height again.
        document.body.classList.toggle('noscroll');
        document.documentElement.classList.toggle('reconstruct-body');
        document.getElementById('spacer').style.height = '5000px';
        SimpleTest.is(document.body.scrollTop, 0, "Scroll remained at top");

        SimpleTest.finish();
    }
  </script>
</head>
<body onload="setTimeout(run, 0)">
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1268195">Mozilla Bug 1268195</a><br/>
The scroll position should end the top of the page. This is the top, yay!
<div id="spacer" style="height: 5000px"></div>
The scroll position should end the top of the page. This is the bottom!
<pre id="test">
</pre>
</body>
</html>