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

Side by Side Diff: LayoutTests/http/tests/htmlimports/import-script-block-crossorigin-dynamic.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 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <script src="/js-test-resources/js-test-pre.js"></script> 4 <script src="/js-test-resources/js-test.js"></script>
5 <link id="target" rel="import" href="http://localhost:8000/htmlimports/resources /cors-having-crossorigin-scripts.cgi"> 5 <link id="target" rel="import" href="http://localhost:8000/htmlimports/resources /cors-having-crossorigin-scripts.cgi">
6 </head> 6 </head>
7 <body> 7 <body>
8 <script> 8 <script>
9 description("This test ensures that crossorigin-marked script elements are block ed properly"); 9 description("This test ensures that crossorigin-marked script elements are block ed properly");
10 window.jsTestIsAsync = true; 10 window.jsTestIsAsync = true;
11 11
12 function testAndDone() 12 function testAndDone()
13 { 13 {
14 shouldBe("document.externalScriptHasRun", "undefined"); 14 shouldBe("document.externalScriptHasRun", "undefined");
15 shouldBe("document.corsExternalScriptHasRun", "undefined"); 15 shouldBe("document.corsExternalScriptHasRun", "undefined");
16 shouldBeTrue("document.corsExternalScriptForLocalhostHasRun"); 16 shouldBeTrue("document.corsExternalScriptForLocalhostHasRun");
17 finishJSTest(); 17 finishJSTest();
18 } 18 }
19 19
20 // This should be called run-check.js 20 // This should be called run-check.js
21 function check() 21 function check()
22 { 22 {
23 testAndDone(); 23 testAndDone();
24 } 24 }
25 25
26 </script> 26 </script>
27 </body> 27 </body>
28 </html> 28 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698