- add third_party src.
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fast / dom / Window / window-open-no-multiple-windows-from-iframe.html
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <script>
5 if (window.testRunner) {
6     testRunner.dumpAsText();
7     testRunner.setCanOpenWindows(true);
8     testRunner.setPopupBlockingEnabled(false);
9     testRunner.overridePreference('WebKitSupportsMultipleWindows', false);
10     testRunner.waitUntilDone();
11 }
12
13 function opened(result) {
14     // Called by the embedded iframe.
15     if (result == window)
16         document.writeln("PASS");
17
18     if (window.testRunner)
19         testRunner.notifyDone();
20 }
21
22 </script>
23 </head>
24 <body>
25 <iframe src="resources/child-opens-window.html"></iframe>
26 FAIL
27 </body>
28 </html>