Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / http / tests / misc / location-replace-crossdomain.html
blob8b624620880dcbcfc98aaf75427b961819cd3757
1 <html>
2 <head>
3 <script>
4 function test()
5 {
6 window.frames['crossDomainFrame'].location.replace("http://127.0.0.1:8000/misc/resources/success.html");
7 if (window.testRunner)
8 setTimeout("testRunner.notifyDone()", 1);
11 if (window.testRunner)
12 testRunner.waitUntilDone();
14 </script>
15 </head>
16 <body onload="test();">
17 <iframe name="crossDomainFrame" src="http://localhost:8000/misc/resources/failure.html"></iframe>
18 </body>
19 </html>
20 <!--
21 <rdar://problem/4808039>
22 http://bugs.webkit.org/show_bug.cgi?id=11230
23 -->