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

Side by Side Diff: LayoutTests/http/tests/loading/script-priorities.html

Issue 457413002: Defer late and async scripts (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Lower priorities for late/async scripts Created 6 years, 4 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
OLDNEW
(Empty)
1 <html>
2 <head>
3 <script>
4 if (window.testRunner) {
5 testRunner.dumpResourceRequestPriorities();
6 testRunner.dumpAsText();
7 }
8 </script>
9 <script src="/js-test-resources/js-test.js"></script>
10 <script src="../misc/resources/defer-script.js" defer></script>
11 <script src="../misc/resources/async-script.js" async></script>
12 <script src="resources/head.js"></script>
13 <script>
14 var script = document.createElement('script');
15 script.src = "resources/injected.js";
16 document.getElementsByTagName('head')[0].appendChild(script);
17 </script>
18 </head>
19 <body>
20 <script src="resources/body.js"></script>
21 <script>
22 document.write('<script src="resources/document-write.js"><\/script> ');
23 </script>
24 </body>
25 </html>
OLDNEW
« no previous file with comments | « LayoutTests/http/tests/loading/resources/injected.js ('k') | LayoutTests/http/tests/loading/script-priorities-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698