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

Side by Side Diff: LayoutTests/fast/events/touch/emulate-touch-events.html

Issue 15508003: Revert "Don't force layout for mouse event hit tests" (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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 <script src="../../js/resources/js-test-pre.js"></script> 4 <script src="../../js/resources/js-test-pre.js"></script>
5 <div id="touchtarget" style="width: 100px; height: 100px; background-color: blue "></div> 5 <div id="touchtarget" style="width: 100px; height: 100px; background-color: blue "></div>
6 <p id="description"></p> 6 <p id="description"></p>
7 <div id="console"></div> 7 <div id="console"></div>
8 <script> 8 <script>
9 var div = document.getElementById("touchtarget"); 9 var div = document.getElementById("touchtarget");
10 var lastEvent = null; 10 var lastEvent = null;
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 { 87 {
88 eventSender.mouseMoveTo(10, 10); 88 eventSender.mouseMoveTo(10, 10);
89 eventSender.mouseDown(0, ["shiftKey", "altKey"]); 89 eventSender.mouseDown(0, ["shiftKey", "altKey"]);
90 eventSender.mouseMoveTo(20, 30); 90 eventSender.mouseMoveTo(20, 30);
91 eventSender.mouseUp(0, ["altKey", "ctrlKey"]); 91 eventSender.mouseUp(0, ["altKey", "ctrlKey"]);
92 } 92 }
93 93
94 if (window.eventSender && window.internals && window.internals.settings) { 94 if (window.eventSender && window.internals && window.internals.settings) {
95 description("This tests single touch event emulation using mouse events."); 95 description("This tests single touch event emulation using mouse events.");
96 96
97 // Mouse events only work after an initial layout
98 document.body.offsetLeft;
99
100 window.eventSender.dragMode = false; 97 window.eventSender.dragMode = false;
101 window.jsTestIsAsync = true; 98 window.jsTestIsAsync = true;
102 window.internals.settings.setTouchEventEmulationEnabled(true); 99 window.internals.settings.setTouchEventEmulationEnabled(true);
103 100
104 shouldBe("'ontouchstart' in window", "true"); 101 shouldBe("'ontouchstart' in window", "true");
105 shouldBe("'ontouchend' in document", "true"); 102 shouldBe("'ontouchend' in document", "true");
106 103
107 mouseEventSequence(); 104 mouseEventSequence();
108 } else 105 } else
109 debug("This test requires DumpRenderTree. Tap on the blue rect to log."); 106 debug("This test requires DumpRenderTree. Tap on the blue rect to log.");
110 </script> 107 </script>
111 <script src="../../js/resources/js-test-post.js"></script> 108 <script src="../../js/resources/js-test-post.js"></script>
112 </body> 109 </body>
113 </html> 110 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/events/scrollbar-double-click.html ('k') | LayoutTests/fast/events/touch/gesture/gesture-click.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698