| OLD | NEW |
| 1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Strict//EN" | 1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Strict//EN" |
| 2 "http://www.w3.org/TR/html4/strict.dtd"> | 2 "http://www.w3.org/TR/html4/strict.dtd"> |
| 3 <html> | 3 <html> |
| 4 <head> | 4 <head> |
| 5 <script type="text/javascript"> | 5 <script type="text/javascript"> |
| 6 function horiz_scroll() { | 6 function horiz_scroll() { |
| 7 if (window.testRunner) | 7 if (window.testRunner) |
| 8 testRunner.waitUntilDone(); | 8 testRunner.waitUntilDone(); |
| 9 | 9 |
| 10 var pos = 0; | 10 var pos = 0; |
| 11 var inner = function () { | 11 var inner = function () { |
| 12 window.scrollTo(pos, 1023); | 12 window.scrollTo(pos, 1023); |
| 13 pos += 15; | 13 pos += 15; |
| 14 if (pos < 2047) | 14 if (pos < 2047) |
| 15 setTimeout(inner, 0); | 15 setTimeout(inner, 0); |
| 16 else if (window.testRunner) | 16 else if (window.testRunner) |
| 17 testRunner.notifyDone(); | 17 testRunner.notifyDone(); |
| 18 }; | 18 }; |
| 19 inner(); | 19 inner(); |
| 20 } | 20 } |
| 21 </script> | 21 </script> |
| 22 </head> | 22 </head> |
| 23 <body style="overflow: hidden" onload="horiz_scroll()"> | 23 <body style="overflow: hidden" onload="horiz_scroll()"> |
| 24 <div style="-webkit-transform: translateZ(0);"></div> | 24 <div style="transform: translateZ(0);"></div> |
| 25 <div style=" | 25 <div style=" |
| 26 background-image: url('data:image/gif;base64,R0lGODdhAgACAIABAAAAAP/
//ywAAAAAAgACAAACA0QCBQA7'); | 26 background-image: url('data:image/gif;base64,R0lGODdhAgACAIABAAAAAP/
//ywAAAAAAgACAAACA0QCBQA7'); |
| 27 width: 2047px; | 27 width: 2047px; |
| 28 height: 2047px; | 28 height: 2047px; |
| 29 "></div> | 29 "></div> |
| 30 </body> | 30 </body> |
| 31 </html> | 31 </html> |
| OLD | NEW |