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

Side by Side Diff: LayoutTests/http/tests/resources/srcset-helper.js

Issue 23861003: Enable srcset support in HTMLImageElement (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fixed a flaky test Created 7 years, 3 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 unified diff | Download patch
« no previous file with comments | « LayoutTests/http/tests/loading/resources/preloaded.js ('k') | Source/core/core.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 function runTest() {
2 if (!window.testRunner || !window.sessionStorage)
3 return;
4
5 if (!window.targetScaleFactor)
6 window.targetScaleFactor = 2;
7
8 if (!sessionStorage.scaleFactorIsSet) {
9 testRunner.waitUntilDone();
10 testRunner.setBackingScaleFactor(targetScaleFactor, scaleFactorIsSet);
11 }
12
13 if (sessionStorage.pageReloaded && sessionStorage.scaleFactorIsSet) {
14 delete sessionStorage.pageReloaded;
15 delete sessionStorage.scaleFactorIsSet;
16 testRunner.notifyDone();
17 } else {
18 // Right now there is a bug that srcset does not properly deal with dyna mic changes to the scale factor,
19 // so to work around that, we must reload the page to get the new image.
20 sessionStorage.pageReloaded = true;
21 document.location.reload(true);
22 }
23 }
24
25 function scaleFactorIsSet() {
26 sessionStorage.scaleFactorIsSet = true;
27 }
28
29 window.addEventListener("load", runTest, false);
OLDNEW
« no previous file with comments | « LayoutTests/http/tests/loading/resources/preloaded.js ('k') | Source/core/core.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698