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

Side by Side Diff: LayoutTests/http/tests/htmlimports/import-script-block-crossorigin-dynamic.html

Issue 23903029: [HTML Imports] Employ load/error events to stabilize polling-based tests. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: For landing Created 7 years, 3 months 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-pre.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 var retryCount = 0;
21
22 // This should be called run-check.js 20 // This should be called run-check.js
23 function check() 21 function check()
24 { 22 {
25 if (!document.corsExternalScriptForLocalhostHasRun) {
26 retryCount++;
27 if (10 < retryCount) {
28 console.log("FAIL: Retried too many times.");
29 return finishJSTest();
30 }
31
32 return setTimeout(check, 100);
33 }
34
35 testAndDone(); 23 testAndDone();
36 } 24 }
37 25
38 </script> 26 </script>
39 <script src="/js-test-resources/js-test-post.js"></script> 27 <script src="/js-test-resources/js-test-post.js"></script>
40 </body> 28 </body>
41 </html> 29 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698