OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 | 2 |
3 <script> | 3 <script> |
4 var clicked = false; | 4 var clicked = false; |
5 var count = 0; | 5 var count = 0; |
6 var requestId = 0; | 6 var requestId = 0; |
7 | 7 |
8 if (window.testRunner) { | 8 if (window.testRunner) { |
9 testRunner.dumpAsText(); | 9 testRunner.dumpAsText(); |
10 testRunner.setCanOpenWindows(); | 10 testRunner.setCanOpenWindows(); |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 } | 79 } |
80 } | 80 } |
81 }; | 81 }; |
82 | 82 |
83 newwindow.resizeTo(100, 100); | 83 newwindow.resizeTo(100, 100); |
84 }; | 84 }; |
85 } | 85 } |
86 </script> | 86 </script> |
87 <p>This tests that on a zoomed page, click to scale up / down works fine. This
test requires testRunner to run. To test manually, open <a href="resources/dice
.png">this image</a> in a browser window, resize the window to 100px tall and zo
om out and click on the image to scale it up.</p> | 87 <p>This tests that on a zoomed page, click to scale up / down works fine. This
test requires testRunner to run. To test manually, open <a href="resources/dice
.png">this image</a> in a browser window, resize the window to 100px tall and zo
om out and click on the image to scale it up.</p> |
88 <pre id="console"></pre> | 88 <pre id="console"></pre> |
OLD | NEW |