OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <html> |
| 3 <head> |
| 4 <style type="text/css"> |
| 5 img { height: 10px; } |
| 6 </style> |
| 7 <script type="text/javascript"> |
| 8 if (window.testRunner) |
| 9 testRunner.dumpAsText(); |
| 10 |
| 11 function test() { |
| 12 // The factors are the same as those in Chrome settings. |
| 13 var zoomFactors = [1, 1.1, 1.25, 1.5, 1.75, 2, 2.5, 3, 4, 5]; |
| 14 if (!window.eventSender) |
| 15 return; |
| 16 |
| 17 for (i = 0; i < zoomFactors.length; ++i) { |
| 18 var output = document.getElementById('output'); |
| 19 eventSender.setPageZoomFactor(zoomFactors[i]); |
| 20 if (document.images[0].height == 10) |
| 21 output.innerHTML += "PASS: zoom " + Math.round(zoomFactors[i] * 100)
+ "%<br>"; |
| 22 else |
| 23 output.innerHTML += "FAIL: zoom " + Math.round(zoomFactors[i] * 100)
+ "%, height " + document.images[0].height + " != 10<br>"; |
| 24 } |
| 25 } |
| 26 window.onload = test; |
| 27 </script> |
| 28 </head> |
| 29 <body> |
| 30 This test is minimized from Acid3 Test #72.<br> |
| 31 <img src="data:image/gif;base64,R0lGODlhAQABAID%2FAMDAwAAAACH5BAEAAAAALAAAAA
ABAAEAAAICRAEA1w%3D%3D" alt=""> |
| 32 <div id="output"></div> |
| 33 </body> |
| 34 </html> |
OLD | NEW |