Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / dom / Window / Location / window-shadow-location-using-string.html
blob6227c8218752695d72cffbdc797c788f3bf55976
1 <html>
2 <head>
3 <script src="../../../../resources/js-test.js"></script>
4 <script src="resources/location-tests-functions.js"></script>
5 </head>
6 <body>
7 <script>
8 if (window.testRunner)
9 testRunner.waitUntilDone();
11 var result;
12 window.onmessage = function()
14 result = normalizeURL(String(window.frames[0].location));
15 shouldBe("result", "'pass.html'");
16 if (window.testRunner)
17 testRunner.notifyDone();
19 </script>
20 <iframe src="resources/window-shadow-location-using-string-iframe.html"></iframe>
21 </body>
22 </html>