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

Side by Side Diff: LayoutTests/fast/dom/HTMLScriptElement/script-async-attr.html

Issue 48903019: Delete js-test-post.js. (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="../../js/resources/js-test-pre.js"></script>
4 </head> 4 </head>
5 <body> 5 <body>
6 6
7 <script id="s0" src="ignored.js"></script> 7 <script id="s0" src="ignored.js"></script>
8 <script id="s1" src="ignored.js" async></script> 8 <script id="s1" src="ignored.js" async></script>
9 <script id="s2" src="ignored.js" async="async"></script> 9 <script id="s2" src="ignored.js" async="async"></script>
10 <script id="s3" src="ignored.js" async="ASYNC"></script> 10 <script id="s3" src="ignored.js" async="ASYNC"></script>
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 shouldBeTrue("isAsync('s4')"); 45 shouldBeTrue("isAsync('s4')");
46 shouldBeTrue("isAsync('s5')"); 46 shouldBeTrue("isAsync('s5')");
47 shouldBeTrue("isAsync('s6')"); 47 shouldBeTrue("isAsync('s6')");
48 shouldBeTrue("isAsync('s7')"); 48 shouldBeTrue("isAsync('s7')");
49 shouldBeFalse("isAsync('s8')"); 49 shouldBeFalse("isAsync('s8')");
50 shouldBeTrue("isDynamicallyInsertedScriptAsync(true)"); 50 shouldBeTrue("isDynamicallyInsertedScriptAsync(true)");
51 shouldBeFalse("isDynamicallyInsertedScriptAsync(false)"); 51 shouldBeFalse("isDynamicallyInsertedScriptAsync(false)");
52 shouldBeTrue("isDynamicallyInsertedScriptAsync(\"async\")"); 52 shouldBeTrue("isDynamicallyInsertedScriptAsync(\"async\")");
53 shouldBeTrue("isDynamicallyInsertedScriptAsync(null)"); 53 shouldBeTrue("isDynamicallyInsertedScriptAsync(null)");
54 </script> 54 </script>
55 <script src="../../js/resources/js-test-post.js"></script>
56 </body> 55 </body>
57 </html> 56 </html>
58 57
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698