Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / frames / sandboxed-iframe-close-top-noclose.html
blobfb3595e69e4239936b0a4bcddbb4030ef1f65d6e
1 <html>
2 <head>
3 <script>
4 if (window.testRunner) {
5 testRunner.dumpAsText();
6 testRunner.waitUntilDone();
7 testRunner.setCanOpenWindows();
8 testRunner.setCloseRemainingWindowsWhenComplete(true);
10 </script>
11 </head>
12 <body>
13 <p>This test verifies that a sandboxed IFrame can close a top-level frame
14 with allow-top-navigation.</p>
15 <button onclick="start()">Start Test</button>
16 <script>
17 function start() {
18 window.wnd = window.open("resources/sandboxed-iframe-close-top-does-not-close.html");
21 function done() {
22 if (window.testRunner)
23 testRunner.notifyDone();
26 // In LayoutTests mode we can start automagically.
27 start();
28 </script>
29 </body>
30 </html>