summaryrefslogtreecommitdiffstats
path: root/docshell/test/navigation/file_scrollRestoration_bfcache_and_nobfcache_part2.html
blob: 40e0578515beedffef4a60fe2b0c0c2d1d4641bc (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
<html>
  <head>
    <script>
      // Note, this page does not enter bfcache because of an HTTP header.

      // Ensure layout is flushed before doing anything with scrolling.
      function flushAndExecute(callback) {
        window.requestAnimationFrame(function() {
          setTimeout(callback);
        });
      }

      var bc = new BroadcastChannel("notbfcached");
      bc.onmessage = (msgEvent) => {
        if (msgEvent.data == "scroll") {
          flushAndExecute(() => {  window.scrollTo(0, 4000); });
        } else if (msgEvent.data == "getScrollY") {
          flushAndExecute(() => { bc.postMessage({ scrollY: window.scrollY}); });
        } else if (msgEvent.data == "back") {
          flushAndExecute(() => { bc.close(); history.back(); });
        } else if (msgEvent.data == "close") {
          bc.postMessage("closed");
          bc.close();
          window.close();
        }
      };
      window.onpageshow = (event) => {
        bc.postMessage({command: "pageshow", persisted: event.persisted});
      };
    </script>
  </head>
  <body>
    <div style="height: 5000px; border: 1px solid black;">content</div>
  </body>
</html>