OLD | NEW |
(Empty) | |
| 1 <html> |
| 2 <head> |
| 3 <script> |
| 4 if (window.testRunner) { |
| 5 testRunner.dumpAsText(); |
| 6 testRunner.dumpChildFramesAsText(); |
| 7 testRunner.setDumpConsoleMessages(true); |
| 8 testRunner.waitUntilDone(); |
| 9 } |
| 10 |
| 11 if (window.internals) |
| 12 internals.runtimeFlags.setFramebustingNeedsSameOriginOrUserGesture = true; |
| 13 |
| 14 window.addEventListener("message", e => { |
| 15 if (e.data == "PASS") |
| 16 testRunner.notifyDone(); |
| 17 else |
| 18 testRunner.testFailed("'top.location' didn't throw."); |
| 19 }); |
| 20 </script> |
| 21 </head> |
| 22 <body> |
| 23 <iframe sandbox='allow-top-navigation allow-scripts' src="http://localhost:8000/
security/frameNavigation/resources/iframe-that-performs-top-navigation-without-u
ser-gesture.html"></iframe> |
| 24 </body> |
| 25 </html> |
OLD | NEW |