summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/ManualTests/scrolling-coordinator-viewport-constrained-crash.html
blob: 2e4128bfb4bcdd2068f126ad5a412f29c54b6669 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html>
<head>
  <script>
  function test()
  {
    if (window.testRunner) {
      testRunner.dumpAsText();
      testRunner.waitUntilDone();
    }
    window.location.href = "javascript:'>'";
  }
  </script>
</head>
<body onload="test()">
  <!-- Tests https://bugs.webkit.org/show_bug.cgi?id=108695. Should not crash. -->
  <div style="position: fixed"></div>
  <div style="position: sticky"></div>
</body>
</html>