Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(129)

Side by Side Diff: LayoutTests/fast/dom/Window/Location/window-shadow-location-using-js-object-with-toString.html

Issue 58533003: Move fast/js/resources files to resources. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <script src="../../../js/resources/js-test-pre.js"></script> 3 <script src="../../../../resources/js-test.js"></script>
4 <script src="resources/location-tests-functions.js"></script> 4 <script src="resources/location-tests-functions.js"></script>
5 </head> 5 </head>
6 <body> 6 <body>
7 <script> 7 <script>
8 if (window.testRunner) 8 if (window.testRunner)
9 testRunner.waitUntilDone(); 9 testRunner.waitUntilDone();
10 10
11 var result; 11 var result;
12 function frameLoaded() 12 function frameLoaded()
13 { 13 {
14 result = normalizeURL(String(window.frames[0].location)); 14 result = normalizeURL(String(window.frames[0].location));
15 shouldBe("result", "'pass.html'"); 15 shouldBe("result", "'pass.html'");
16 if (window.testRunner) 16 if (window.testRunner)
17 testRunner.notifyDone(); 17 testRunner.notifyDone();
18 } 18 }
19 </script> 19 </script>
20 <iframe onload="frameLoaded()" src="resources/window-shadow-location-using-js-ob ject-with-toString-iframe.html"></iframe> 20 <iframe onload="frameLoaded()" src="resources/window-shadow-location-using-js-ob ject-with-toString-iframe.html"></iframe>
21 </body> 21 </body>
22 </html> 22 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698