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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/images/image-zoom-to-25.html

Issue 2141573002: Deflake image-zoom-to-{25,500}.html (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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 | « no previous file | third_party/WebKit/LayoutTests/fast/images/image-zoom-to-500.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <script> 3 <script>
4 var count = 0; 4 var count = 0;
5 5
6 if (window.testRunner) { 6 if (window.testRunner) {
7 testRunner.dumpAsText(); 7 testRunner.dumpAsText();
8 testRunner.setCanOpenWindows(); 8 testRunner.setCanOpenWindows();
9 testRunner.waitUntilDone(); 9 testRunner.waitUntilDone();
10 } 10 }
(...skipping 21 matching lines...) Expand all
32 newwindow.resizeTo(200, 200); 32 newwindow.resizeTo(200, 200);
33 }, 0); 33 }, 0);
34 return; 34 return;
35 } 35 }
36 36
37 if (window.eventSender) { 37 if (window.eventSender) {
38 eventSender.zoomPageOut(); 38 eventSender.zoomPageOut();
39 var w = Math.round(image.clientWidth); 39 var w = Math.round(image.clientWidth);
40 var h = Math.round(image.clientHeight); 40 var h = Math.round(image.clientHeight);
41 log("Size at zoom level" + (count) + " : " + w + " x " + h); 41 log("Size at zoom level" + (count) + " : " + w + " x " + h);
42 if (++count == 6) 42 if (++count == 6) {
43 newwindow.onresize = undefined;
43 testRunner.notifyDone(); 44 testRunner.notifyDone();
45 }
44 } 46 }
45 }; 47 };
46 48
47 newwindow.resizeTo(200, 200); 49 newwindow.resizeTo(200, 200);
48 }; 50 };
49 } 51 }
50 </script> 52 </script>
51 <body onload="zoomPage()"> 53 <body onload="zoomPage()">
52 <p>This tests that page zoom and image auto-sizing interact well together. This test requires testRunner to run. To test manually, open <a href="resources/dic e.png">this image</a> in a browser window, resize the window to 200px tall and z oom out 6 times. The image should get smaller at each step.</p> 54 <p>This tests that page zoom and image auto-sizing interact well together. This test requires testRunner to run. To test manually, open <a href="resources/dic e.png">this image</a> in a browser window, resize the window to 200px tall and z oom out 6 times. The image should get smaller at each step.</p>
53 <pre id="console"></pre> 55 <pre id="console"></pre>
54 </body> 56 </body>
55 </html> 57 </html>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/images/image-zoom-to-500.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698