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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/events/wheel/wheelevent-in-text-node.html

Issue 2928793003: Re-target wheel events only when a new scroll sequence has started. (Closed)
Patch Set: review comments addressed. Created 3 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
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <script src="../../../resources/js-test.js"></script> 4 <script src="../../../resources/js-test.js"></script>
5 <script> 5 <script>
6 window.jsTestIsAsync = true; 6 window.jsTestIsAsync = true;
7 7
8 function test() { 8 function test() {
9 var div = document.querySelector('div'); 9 var div = document.querySelector('div');
10 if (window.eventSender) { 10 if (window.eventSender) {
11 eventSender.mouseMoveTo(div.offsetLeft + 5, div.offsetTop + 5); 11 eventSender.mouseMoveTo(div.offsetLeft + 5, div.offsetTop + 5);
12 eventSender.mouseScrollBy(0,120); 12 eventSender.mouseScrollBy(0, 120, false, true, 0, true, "phaseBe gan");
13 } else { 13 } else {
14 debug("FAIL: This test requires window.eventSender."); 14 debug("FAIL: This test requires window.eventSender.");
15 finishJSTest(); 15 finishJSTest();
16 } 16 }
17 } 17 }
18 18
19 function wheelHandler(e) { 19 function wheelHandler(e) {
20 window.theEvent = e; 20 window.theEvent = e;
21 21
22 debug("'Real' MouseWheel events should not be dispatched on the text node, but instead on its parent."); 22 debug("'Real' MouseWheel events should not be dispatched on the text node, but instead on its parent.");
23 shouldBeEqualToString('theEvent.target.nodeName', 'DIV'); 23 shouldBeEqualToString('theEvent.target.nodeName', 'DIV');
24 finishJSTest(); 24 finishJSTest();
25 } 25 }
26 26
27 window.onload = function () { 27 window.onload = function () {
28 var div = document.querySelector('div'); 28 var div = document.querySelector('div');
29 div.addEventListener('mousewheel', wheelHandler); 29 div.addEventListener('mousewheel', wheelHandler);
30 test(); 30 test();
31 }; 31 };
32 </script> 32 </script>
33 </head> 33 </head>
34 <body> 34 <body>
35 <div>This is a div containing text. Wheel events originating on the text 35 <div>This is a div containing text. Wheel events originating on the text
36 node should target the div.</div> 36 node should target the div.</div>
37 </body> 37 </body>
38 </html> 38 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698