| OLD | NEW |
| (Empty) |
| 1 <!DOCTYPE html> | |
| 2 <html> | |
| 3 <body> | |
| 4 <embed id="plugin" type="application/x-webkit-test-webplugin" accepts-touch="raw
" print-user-gesture-status="true" width="100" height="100"></embed> | |
| 5 <p> | |
| 6 Test that the user gesture indicator is correctly set for events forwarded | |
| 7 through the WebPluginContainer. The tests succeeds if the first | |
| 8 mousedown/mouseup event pair is a user gesture, and the second is not. | |
| 9 </p> | |
| 10 <script> | |
| 11 if (!window.testRunner || !window.eventSender) { | |
| 12 document.write("This test does not work in manual mode."); | |
| 13 } else { | |
| 14 testRunner.dumpAsText(); | |
| 15 | |
| 16 // Click on the plugin. | |
| 17 eventSender.mouseMoveTo(20, 20); | |
| 18 eventSender.mouseDown(); | |
| 19 eventSender.mouseUp(); | |
| 20 | |
| 21 // Fake mouse events | |
| 22 var plugin = document.getElementById("plugin"); | |
| 23 var evt = document.createEvent("MouseEvent"); | |
| 24 evt.initMouseEvent("mousedown", true, true, window, 1, 20, 20, 20, 20, f
alse, false, false, false, 0, null); | |
| 25 plugin.dispatchEvent(evt); | |
| 26 | |
| 27 evt = document.createEvent("MouseEvent"); | |
| 28 evt.initMouseEvent("mouseup", true, true, window, 1, 20, 20, 20, 20, fal
se, false, false, false, 0, null); | |
| 29 plugin.dispatchEvent(evt); | |
| 30 } | |
| 31 </script> | |
| 32 </body> | |
| 33 </html> | |
| OLD | NEW |