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

Side by Side Diff: LayoutTests/http/tests/misc/script-defer-after-slow-stylesheet.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> 7 <body>
8 <dvi id="description"></div> 8 <dvi id="description"></div>
9 <div id="console"></div> 9 <div id="console"></div>
10 <script type="text/javascript"> 10 <script type="text/javascript">
11 description('This tests that an inline slow stylesheet executes before deferred scripts.'); 11 description('This tests that an inline slow stylesheet executes before deferred scripts.');
12 12
13 var jsTestIsAsync = true; 13 var jsTestIsAsync = true;
14 14
15 document.addEventListener("DOMContentLoaded", function() { 15 document.addEventListener("DOMContentLoaded", function() {
16 debug('DOMContentLoaded'); 16 debug('DOMContentLoaded');
17 17
18 finishJSTest(); 18 finishJSTest();
19 }, false); 19 }, false);
20 </script> 20 </script>
21 21
22 <script src="http://127.0.0.1:8000/misc/resources/script-debug-body-background. 22 <script src="http://127.0.0.1:8000/misc/resources/script-debug-body-background.
23 js" defer="defer"></script> 23 js" defer="defer"></script>
24 <link rel="stylesheet" href="http://127.0.0.1:8000/misc/resources/slow-styleshe 24 <link rel="stylesheet" href="http://127.0.0.1:8000/misc/resources/slow-styleshe
25 et.cgi"> 25 et.cgi">
26 <script> 26 <script>
27 </script> 27 </script>
28 </body> 28 </body>
29 </html> 29 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698