| 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 <style> | 8 <script src="../resources/mock_scrollbars.js"></script> |
| 9 ::-webkit-scrollbar { | |
| 10 width: 0px; | |
| 11 height: 0px; | |
| 12 } | |
| 13 </style> | |
| 14 </head> | 9 </head> |
| 15 <body style="height: 600px"> | 10 <body style="height: 600px"> |
| 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> | 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> |
| 17 <script type="text/javascript" charset="utf-8"> | 12 <script type="text/javascript" charset="utf-8"> |
| 18 window.scrollBy(0, 200); | 13 window.scrollBy(0, 200); |
| 19 if (window.testRunner) | 14 if (window.testRunner) |
| 20 testRunner.notifyDone(); | 15 testRunner.notifyDone(); |
| 21 </script> | 16 </script> |
| 22 </body> | 17 </body> |
| 23 </html> | 18 </html> |
| OLD | NEW |