| OLD | NEW |
| 1 <!DOCTYPE HTML> | 1 <!DOCTYPE HTML> |
| 2 <html> | 2 <html> |
| 3 <body> | 3 <body> |
| 4 <div style="width: 1000px; height: 1000px; position: absolute; top: 0; left:
0;"></div> | 4 <div style="width: 1000px; height: 1000px; position: absolute; top: 0; left:
0;"></div> |
| 5 <div style="width: 100px; height: 100px; position: absolute; top: 100px; lef
t: 0; background: green"></div> | 5 <div style="width: 100px; height: 100px; position: absolute; top: 100px; lef
t: 0; background: green"></div> |
| 6 <p> | 6 <p> |
| 7 Test for <i><a href="rdar://problem/6643103">rdar://problem/6643103</a> | 7 Test for <i><a href="rdar://problem/6643103">rdar://problem/6643103</a> |
| 8 Unscaled values from body.scrollHeight</i>. | 8 Unscaled values from body.scrollHeight</i>. |
| 9 </p> | 9 </p> |
| 10 <script src="../../resources/js-test.js"></script> | 10 <script src="../../resources/js-test.js"></script> |
| 11 <script> | 11 <script> |
| 12 setPrintTestResultsLazily(); |
| 13 |
| 12 var floatPrecision = 0.00001; | 14 var floatPrecision = 0.00001; |
| 13 function checkValue(actual, expected) | 15 function checkValue(actual, expected) |
| 14 { | 16 { |
| 15 if (window.eventSender) { | 17 if (window.eventSender) { |
| 16 shouldBeCloseTo(actual, expected, floatPrecision); | 18 shouldBeCloseTo(actual, expected, floatPrecision); |
| 17 } | 19 } |
| 18 } | 20 } |
| 19 | 21 |
| 20 if (window.testRunner) { | 22 if (window.testRunner) { |
| 21 testRunner.dumpAsText(); | 23 testRunner.dumpAsText(); |
| (...skipping 16 matching lines...) Expand all Loading... |
| 38 checkValue('document.scrollingElement.scrollTop', 100); | 40 checkValue('document.scrollingElement.scrollTop', 100); |
| 39 | 41 |
| 40 // Zooming back out. | 42 // Zooming back out. |
| 41 eventSender.zoomPageOut(); | 43 eventSender.zoomPageOut(); |
| 42 checkValue('document.scrollingElement.scrollTop', 100); | 44 checkValue('document.scrollingElement.scrollTop', 100); |
| 43 checkValue('document.scrollingElement.scrollLeft', 50); | 45 checkValue('document.scrollingElement.scrollLeft', 50); |
| 44 } | 46 } |
| 45 </script> | 47 </script> |
| 46 </body> | 48 </body> |
| 47 </html> | 49 </html> |
| OLD | NEW |