Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(158)

Side by Side Diff: trunk/LayoutTests/plugins/user-gesture.html

Issue 1184693003: Revert 196987 "Don't invoke default actions for MouseEvents gene..." (Closed) Base URL: svn://svn.chromium.org/blink/
Patch Set: Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <body> 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> 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> 5 <p>
6 Test that the user gesture indicator is correctly set for events forwarded 6 Test that the user gesture indicator is correctly set for events forwarded
7 through the WebPluginContainer. The tests succeeds if the first 7 through the WebPluginContainer. The tests succeeds if the first
8 mousedown/mouseup event pair is a user gesture, and the second is not. Issue 8 94913002 has changed this behavior so that the second mousedown/mouseup are not delivered to the plugin. 8 mousedown/mouseup event pair is a user gesture, and the second is not.
9 </p> 9 </p>
10 <script> 10 <script>
11 if (!window.testRunner || !window.eventSender) { 11 if (!window.testRunner || !window.eventSender) {
12 document.write("This test does not work in manual mode."); 12 document.write("This test does not work in manual mode.");
13 } else { 13 } else {
14 testRunner.dumpAsText(); 14 testRunner.dumpAsText();
15 internals.updateLayoutIgnorePendingStylesheetsAndRunPostLayoutTasks(); 15 internals.updateLayoutIgnorePendingStylesheetsAndRunPostLayoutTasks();
16 16
17 // Click on the plugin. 17 // Click on the plugin.
18 eventSender.mouseMoveTo(20, 20); 18 eventSender.mouseMoveTo(20, 20);
19 eventSender.mouseDown(); 19 eventSender.mouseDown();
20 eventSender.mouseUp(); 20 eventSender.mouseUp();
21 21
22 // Stray mouse up event, should get its own gesture. 22 // Stray mouse up event, should get its own gesture.
23 eventSender.mouseUp(); 23 eventSender.mouseUp();
24 24
25 // Fake mouse events 25 // Fake mouse events
26 var plugin = document.getElementById("plugin"); 26 var plugin = document.getElementById("plugin");
27 var evt = document.createEvent("MouseEvent"); 27 var evt = document.createEvent("MouseEvent");
28 evt.initMouseEvent("mousedown", true, true, window, 1, 20, 20, 20, 20, f alse, false, false, false, 0, null); 28 evt.initMouseEvent("mousedown", true, true, window, 1, 20, 20, 20, 20, f alse, false, false, false, 0, null);
29 plugin.dispatchEvent(evt); 29 plugin.dispatchEvent(evt);
30 30
31 evt = document.createEvent("MouseEvent"); 31 evt = document.createEvent("MouseEvent");
32 evt.initMouseEvent("mouseup", true, true, window, 1, 20, 20, 20, 20, fal se, false, false, false, 0, null); 32 evt.initMouseEvent("mouseup", true, true, window, 1, 20, 20, 20, 20, fal se, false, false, false, 0, null);
33 plugin.dispatchEvent(evt); 33 plugin.dispatchEvent(evt);
34 } 34 }
35 </script> 35 </script>
36 </body> 36 </body>
37 </html> 37 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698