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

Side by Side Diff: LayoutTests/http/tests/misc/async-script.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-test-resources/js-test-pre.js"></script> 3 <script src="/js-test-resources/js-test.js"></script>
4 <script> 4 <script>
5 if (window.testRunner) { 5 if (window.testRunner) {
6 testRunner.dumpAsText(); 6 testRunner.dumpAsText();
7 testRunner.waitUntilDone(); 7 testRunner.waitUntilDone();
8 } 8 }
9 9
10 function log(msg) { 10 function log(msg) {
11 document.getElementById("log").innerHTML += msg; 11 document.getElementById("log").innerHTML += msg;
12 } 12 }
13 13
(...skipping 15 matching lines...) Expand all
29 Test that an asynchronous script tag is executed, even if it's removed from the 29 Test that an asynchronous script tag is executed, even if it's removed from the
30 document before it was loaded. 30 document before it was loaded.
31 </p> 31 </p>
32 <p> 32 <p>
33 This test passes if the word "PASS" is displayed below. 33 This test passes if the word "PASS" is displayed below.
34 </p> 34 </p>
35 </div> 35 </div>
36 <div id="log"></div> 36 <div id="log"></div>
37 </body> 37 </body>
38 </html> 38 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698