| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <style> | 3 <style> |
| 4 #plugin { | 4 #plugin { |
| 5 width: 150px; | 5 width: 150px; |
| 6 height: 150px; | 6 height: 150px; |
| 7 -webkit-transform: rotate(90deg); | 7 transform: rotate(90deg); |
| 8 } | 8 } |
| 9 </style> | 9 </style> |
| 10 </head> | 10 </head> |
| 11 | 11 |
| 12 <body> | 12 <body> |
| 13 <embed id="plugin" type="application/x-webkit-test-webplugin" accepts-touch="raw
" print-event-details="true"></embed> | 13 <embed id="plugin" type="application/x-webkit-test-webplugin" accepts-touch="raw
" print-event-details="true"></embed> |
| 14 <script> | 14 <script> |
| 15 | 15 |
| 16 if (!window.testRunner || !window.eventSender) { | 16 if (!window.testRunner || !window.eventSender) { |
| 17 document.write("This test requires DumpRenderTree."); | 17 document.write("This test requires DumpRenderTree."); |
| (...skipping 20 matching lines...) Expand all Loading... |
| 38 eventSender.mouseScrollBy(10, 0); | 38 eventSender.mouseScrollBy(10, 0); |
| 39 | 39 |
| 40 // Test gesture events. | 40 // Test gesture events. |
| 41 eventSender.gestureShowPress(positionX, positionY); | 41 eventSender.gestureShowPress(positionX, positionY); |
| 42 eventSender.gestureTap(positionX, positionY); | 42 eventSender.gestureTap(positionX, positionY); |
| 43 } | 43 } |
| 44 | 44 |
| 45 </script> | 45 </script> |
| 46 </body> | 46 </body> |
| 47 </html> | 47 </html> |
| OLD | NEW |