Index: third_party/WebKit/LayoutTests/imported/wpt/preload/single_download_late_used_preload.html |
diff --git a/third_party/WebKit/LayoutTests/imported/wpt/preload/single_download_late_used_preload.html b/third_party/WebKit/LayoutTests/imported/wpt/preload/single_download_late_used_preload.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..64e7085ce5a1090009c9383f75705a8d76869cc4 |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/imported/wpt/preload/single_download_late_used_preload.html |
@@ -0,0 +1,19 @@ |
+<!DOCTYPE html> |
+<script src="/resources/testharness.js"></script> |
+<script src="/resources/testharnessreport.js"></script> |
+<script> |
+ var t = async_test('Makes sure that preloaded resources are not downloaded again when used'); |
+</script> |
+<div id=result></div> |
+<link rel=preload href="resources/square.png" as=image> |
+<script> |
+ window.addEventListener("load", t.step_func(function() { |
+ t.step_timeout(function() { |
+ document.getElementById("result").innerHTML = "<image src='resources/square.png'>"; |
+ t.step_timeout(function() { |
+ assert_equals(performance.getEntriesByType("resource").length, 3); |
+ t.done(); |
+ }, 1000); |
+ }, 1000); |
+ })); |
+</script> |