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

Unified Diff: third_party/WebKit/Source/web/tests/data/script_priority.html

Issue 2211283004: Drop test-only WebFrameClient params/functions (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/web/tests/data/script_priority.html
diff --git a/third_party/WebKit/Source/web/tests/data/script_priority.html b/third_party/WebKit/Source/web/tests/data/script_priority.html
new file mode 100644
index 0000000000000000000000000000000000000000..7ee8236855cf60e5900ed2d33903e38b52ee1dd1
--- /dev/null
+++ b/third_party/WebKit/Source/web/tests/data/script_priority.html
@@ -0,0 +1,24 @@
+<html>
+ <head>
+ <script src="priorities/defer.js" defer></script>
+ <script src="priorities/async.js" async></script>
+ <script src="priorities/head.js"></script>
+ </head>
+ <body>
+ <script>
+ document.write('<script src="priorities/document-write.js"><\/script>');
+ </script>
+ <script>
+ var script = document.createElement('script');
+ script.src = "priorities/injected.js";
+ document.getElementsByTagName('head')[0].appendChild(script);
+ </script>
+ <script>
+ var asyncScript = document.createElement('script');
+ asyncScript.async = true;
+ asyncScript.src = "priorities/injected-async.js";
+ document.getElementsByTagName('head')[0].appendChild(asyncScript);
+ </script>
+ <script src="priorities/body.js"></script>
+ </body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698