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

Unified Diff: third_party/WebKit/LayoutTests/imported/wpt/preload/avoid_delaying_onload_link_preload.html

Issue 2588723002: Import wpt@e1e2bfbe1d34de9826a036a0e9d43ba20190c69c (Closed)
Patch Set: Modify TestExpectations or download new baselines for tests. Created 4 years 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/LayoutTests/imported/wpt/preload/avoid_delaying_onload_link_preload.html
diff --git a/third_party/WebKit/LayoutTests/imported/wpt/preload/avoid_delaying_onload_link_preload.html b/third_party/WebKit/LayoutTests/imported/wpt/preload/avoid_delaying_onload_link_preload.html
new file mode 100644
index 0000000000000000000000000000000000000000..e92658dd2677e36647e5f8e26350fc64305588ee
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/imported/wpt/preload/avoid_delaying_onload_link_preload.html
@@ -0,0 +1,13 @@
+<!DOCTYPE html>
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<script>
+ var t = async_test('Makes sure link preload preloaded resources are not delaying onload');
+</script>
+<link rel=preload href="resources/dummy.js?pipe=trickle(d5)" as=script>
+<script>
+ window.addEventListener("load", t.step_func(function() {
+ assert_equals(performance.getEntriesByType("resource").length, 2);
+ t.done();
+ }));
+</script>

Powered by Google App Engine
This is Rietveld 408576698