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

Side by Side Diff: LayoutTests/http/tests/misc/script-defer.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 PUBLIC "-//IETF//DTD HTML//EN"> 1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
2 <html> 2 <html>
3 <head> 3 <head>
4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5 <script src="../../js-test-resources/js-test-pre.js"></script> 5 <script src="../../js-test-resources/js-test.js"></script>
6 </head> 6 </head>
7 <body onload="debug('load')"> 7 <body onload="debug('load')">
8 This tests for proper execution order of scripts with the defer attribute <a hre f="https://bugs.webkit.org/show_bug.cgi?id=20710">https://bugs.webkit.org/show_b ug.cgi?id=20710</a>. 8 This tests for proper execution order of scripts with the defer attribute <a hre f="https://bugs.webkit.org/show_bug.cgi?id=20710">https://bugs.webkit.org/show_b ug.cgi?id=20710</a>.
9 <div id="console"></div> 9 <div id="console"></div>
10 10
11 <script type="text/javascript"> 11 <script type="text/javascript">
12 document.addEventListener("DOMContentLoaded", function() { 12 document.addEventListener("DOMContentLoaded", function() {
13 debug('DOMContentLoaded'); 13 debug('DOMContentLoaded');
14 }, false); 14 }, false);
15 </script> 15 </script>
16 <script src="http://127.0.0.1:8000/misc/resources/slow-defer-script.cgi" defer=" DEFER"></script> 16 <script src="http://127.0.0.1:8000/misc/resources/slow-defer-script.cgi" defer=" DEFER"></script>
17 <script src="http://127.0.0.1:8000/misc/resources/defer-script.js" defer="DEFER" ></script> 17 <script src="http://127.0.0.1:8000/misc/resources/defer-script.js" defer="DEFER" ></script>
18 <script src="http://127.0.0.1:8000/misc/resources/external-script.js"></script> 18 <script src="http://127.0.0.1:8000/misc/resources/external-script.js"></script>
19 <script> 19 <script>
20 debug("inline"); 20 debug("inline");
21 </script> 21 </script>
22 </body> 22 </body>
23 </html> 23 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698