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