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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/misc/client-hint-accept-on-subresource.html

Issue 2860093003: Implement device-ram client hints header (Closed)
Patch Set: Fix FrameFetchContextTest Created 3 years, 7 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/LayoutTests/http/tests/misc/client-hint-accept-on-subresource.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/misc/client-hint-accept-on-subresource.html b/third_party/WebKit/LayoutTests/http/tests/misc/client-hint-accept-on-subresource.html
index 1b3a54cac7fea42061d068208c9875f7836c114b..e4ac8eb5b07c153afedb3af4f2d95bacf6b1b221 100644
--- a/third_party/WebKit/LayoutTests/http/tests/misc/client-hint-accept-on-subresource.html
+++ b/third_party/WebKit/LayoutTests/http/tests/misc/client-hint-accept-on-subresource.html
@@ -12,11 +12,18 @@
assert_unreached("Image should not have loaded.");
};
+ var loadDeviceRamImage = function() {
+ var img = new Image();
+ img.src = 'resources/image-checks-for-device-ram.php';
+ img.onload = t.step_func(unreached);
+ img.onerror = t.step_func(function(){ t.done(); });
+ body.appendChild(img);
+ };
var loadRWImage = function() {
var img = new Image();
img.src = 'resources/image-checks-for-width.php';
img.onload = t.step_func(unreached);
- img.onerror = t.step_func(function(){ t.done(); });
+ img.onerror = t.step_func(loadDeviceRamImage);
body.appendChild(img);
};
t.step(function() {

Powered by Google App Engine
This is Rietveld 408576698