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

Unified Diff: third_party/WebKit/LayoutTests/imported/wpt/preload/link_header_preload_delay_onload.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/link_header_preload_delay_onload.html
diff --git a/third_party/WebKit/LayoutTests/imported/wpt/preload/link_header_preload_delay_onload.html b/third_party/WebKit/LayoutTests/imported/wpt/preload/link_header_preload_delay_onload.html
new file mode 100644
index 0000000000000000000000000000000000000000..2ee24b802aa26eb5002c71c555e94c6720a9d6d9
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/imported/wpt/preload/link_header_preload_delay_onload.html
@@ -0,0 +1,34 @@
+<!DOCTYPE html>
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<script>
+ var t = async_test('Makes sure that Link headers preload resources and block window.onload after resource discovery');
+</script>
+<body>
+<style>
+ #background {
+ width: 200px;
+ height: 200px;
+ background-image: url(resources/square.png?background);
+ }
+</style>
+<link rel="stylesheet" href="resources/dummy.css">
+<script src="resources/dummy.js"></script>
+<div id="background"></div>
+<script>
+ document.write('<img src="resources/square.png">');
+ window.addEventListener("load", t.step_func(function() {
+ var entries = performance.getEntriesByType("resource");
+ var found_background_first = false;
+ for (var i = 0; i < entries.length; ++i) {
+ var entry = entries[i];
+ if (entry.name.indexOf("square") != -1) {
+ if (entry.name.indexOf("background") != -1)
+ found_background_first = true;
+ }
+ }
+ assert_true(found_background_first);
+ assert_equals(entries.length, 6);
+ t.done();
+ }));
+</script>

Powered by Google App Engine
This is Rietveld 408576698