| OLD | NEW |
| (Empty) | |
| 1 <!DOCTYPE html> |
| 2 <script> |
| 3 function finishTest() { |
| 4 testRunner.notifyDone(); |
| 5 } |
| 6 |
| 7 function scaleDown() { |
| 8 testRunner.setBackingScaleFactor(1, finishTest); |
| 9 } |
| 10 function startTest() { |
| 11 testRunner.waitUntilDone(); |
| 12 testRunner.setBackingScaleFactor(3, scaleDown); |
| 13 } |
| 14 if (window.testRunner) { |
| 15 onload = startTest; |
| 16 } |
| 17 </script> |
| 18 <div id="div" style="width:200px; height:120px; overflow:auto"> |
| 19 <br>This should be a scrollable text box with horizontal and vertical scroll. |
| 20 <div style="width:400px; height: 200px;"></div> |
| 21 </div> |
| OLD | NEW |