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