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

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

Issue 14859016: Don't force layout for mouse event hit tests (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fix review comment Created 7 years, 7 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. 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 15
16 // Mouse events only work after an initial layout
17 document.body.offsetLeft;
16 // Click on the plugin. 18 // Click on the plugin.
17 eventSender.mouseMoveTo(20, 20); 19 eventSender.mouseMoveTo(20, 20);
18 eventSender.mouseDown(); 20 eventSender.mouseDown();
19 eventSender.mouseUp(); 21 eventSender.mouseUp();
20 22
21 // Fake mouse events 23 // Fake mouse events
22 var plugin = document.getElementById("plugin"); 24 var plugin = document.getElementById("plugin");
23 var evt = document.createEvent("MouseEvent"); 25 var evt = document.createEvent("MouseEvent");
24 evt.initMouseEvent("mousedown", true, true, window, 1, 20, 20, 20, 20, f alse, false, false, false, 0, null); 26 evt.initMouseEvent("mousedown", true, true, window, 1, 20, 20, 20, 20, f alse, false, false, false, 0, null);
25 plugin.dispatchEvent(evt); 27 plugin.dispatchEvent(evt);
26 28
27 evt = document.createEvent("MouseEvent"); 29 evt = document.createEvent("MouseEvent");
28 evt.initMouseEvent("mouseup", true, true, window, 1, 20, 20, 20, 20, fal se, false, false, false, 0, null); 30 evt.initMouseEvent("mouseup", true, true, window, 1, 20, 20, 20, 20, fal se, false, false, false, 0, null);
29 plugin.dispatchEvent(evt); 31 plugin.dispatchEvent(evt);
30 } 32 }
31 </script> 33 </script>
32 </body> 34 </body>
33 </html> 35 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698