| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <title>Vertical scroll test for composited elements</title> | 3 <title>Vertical scroll test for composited elements</title> |
| 4 <script type="text/javascript" charset="utf-8"> | 4 <script type="text/javascript" charset="utf-8"> |
| 5 if (window.testRunner) | 5 if (window.testRunner) |
| 6 testRunner.waitUntilDone(); | 6 testRunner.waitUntilDone(); |
| 7 </script> | 7 </script> |
| 8 <script src="../resources/mock_scrollbars.js"></script> | 8 <style> |
| 9 ::-webkit-scrollbar { |
| 10 width: 0px; |
| 11 height: 0px; |
| 12 } |
| 13 </style> |
| 9 </head> | 14 </head> |
| 10 <body style="height: 600px"> | 15 <body style="height: 600px"> |
| 11 <div style="transform: rotate3d(0,0,1,20deg); width: 800px; height: 1000px; bord
er-style: solid; border-color: Red; border-width: 3px; background-image: url(../
resources/apple.jpg); background-repeat:repeat"></div> | 16 <div style="transform: rotate3d(0,0,1,20deg); width: 800px; height: 1000px; bord
er-style: solid; border-color: Red; border-width: 3px; background-image: url(../
resources/apple.jpg); background-repeat:repeat"></div> |
| 12 <script type="text/javascript" charset="utf-8"> | 17 <script type="text/javascript" charset="utf-8"> |
| 13 window.scrollBy(0, 200); | 18 window.scrollBy(0, 200); |
| 14 if (window.testRunner) | 19 if (window.testRunner) |
| 15 testRunner.notifyDone(); | 20 testRunner.notifyDone(); |
| 16 </script> | 21 </script> |
| 17 </body> | 22 </body> |
| 18 </html> | 23 </html> |
| OLD | NEW |