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

Unified Diff: third_party/WebKit/LayoutTests/external/wpt/preload/single_download_late_used_preload.html

Issue 2676573004: Import wpt@6010f54a979d242f657b284bae53c2b218c533f4 (Closed)
Patch Set: Update test expectations and baselines. Created 3 years, 10 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
« no previous file with comments | « third_party/WebKit/LayoutTests/external/wpt/navigation-timing/test_unique_performance_objects.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/external/wpt/preload/single_download_late_used_preload.html
diff --git a/third_party/WebKit/LayoutTests/external/wpt/preload/single_download_late_used_preload.html b/third_party/WebKit/LayoutTests/external/wpt/preload/single_download_late_used_preload.html
index 64e7085ce5a1090009c9383f75705a8d76869cc4..a4fd3dba4b35a8d5836dc966ddafaa38f241d229 100644
--- a/third_party/WebKit/LayoutTests/external/wpt/preload/single_download_late_used_preload.html
+++ b/third_party/WebKit/LayoutTests/external/wpt/preload/single_download_late_used_preload.html
@@ -1,19 +1,20 @@
<!DOCTYPE html>
+<title>Ensure preloaded resources are not downloaded again when used</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
+<link rel=preload href="resources/square.png?pipe=trickle(d1)" as=image>
<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);
- }));
+ var link = document.getElementsByTagName("link")[0]
+ assert_equals(link.as, "image");
+ link.addEventListener("load", () => {
+ assert_equals(performance.getEntriesByType("resource").length, 3)
+ var img = document.createElement("img");
+ img.src = "resources/square.png?pipe=trickle(d1)";
+ img.onload = () => {
+ assert_equals(performance.getEntriesByType("resource").length, 3);
+ done();
+ };
+ document.body.appendChild(img);
+ });
</script>
+<body>
« no previous file with comments | « third_party/WebKit/LayoutTests/external/wpt/navigation-timing/test_unique_performance_objects.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698