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

Side by Side Diff: LayoutTests/fast/events/resources/mouse-events-within-no-element-iframe.html

Issue 1047733002: Fixed mouseenter/mouseleave event firing order. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fixed tests. Created 5 years, 8 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 <script src="../../../resources/js-test.js"></script> 2 <script src="../../../resources/js-test.js"></script>
3 <style type="text/css"> 3 <style type="text/css">
4 html, body, .workspace { 4 html, body, .workspace {
5 height: 100%; 5 height: 100%;
6 } 6 }
7 button { 7 button {
8 cursor: pointer; 8 cursor: pointer;
9 padding: 0px; 9 padding: 0px;
10 margin: 0px; 10 margin: 0px;
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 verifyEventLog('mousemove', 'BODY'); // x, y - 100 72 verifyEventLog('mousemove', 'BODY'); // x, y - 100
73 verifyEventLog('mousemove', '#document'); // x, y - 100 73 verifyEventLog('mousemove', '#document'); // x, y - 100
74 verifyEventLog('mouseover', '#document'); // x, y 74 verifyEventLog('mouseover', '#document'); // x, y
75 verifyEventLog('mouseover', 'BODY'); // x, y - 100 75 verifyEventLog('mouseover', 'BODY'); // x, y - 100
76 verifyEventLog('mouseover', '#document'); // x, y - 100 76 verifyEventLog('mouseover', '#document'); // x, y - 100
77 verifyEventLog('mouseout', '#document'); // x, y 77 verifyEventLog('mouseout', '#document'); // x, y
78 verifyEventLog('mouseout', 'BODY'); // x, y - 100 78 verifyEventLog('mouseout', 'BODY'); // x, y - 100
79 verifyEventLog('mouseout', '#document'); // x, y - 100 79 verifyEventLog('mouseout', '#document'); // x, y - 100
80 verifyEventLog('mouseenter', '#document');// x, y 80 verifyEventLog('mouseenter', '#document');// x, y
81 verifyEventLog('mouseleave', '#document');// x, y 81 verifyEventLog('mouseleave', '#document');// x, y
82 verifyEventLog('mouseenter', '#document');// x, y - 100
82 verifyEventLog('mouseenter', 'BODY'); // x, y - 100 83 verifyEventLog('mouseenter', 'BODY'); // x, y - 100
83 verifyEventLog('mouseenter', '#document');// x, y - 100
84 verifyEventLog('mouseleave', 'BODY'); // x, y + 200 84 verifyEventLog('mouseleave', 'BODY'); // x, y + 200
85 verifyEventLog('mouseleave', '#document');// x, y + 200 85 verifyEventLog('mouseleave', '#document');// x, y + 200
86 </script> 86 </script>
87 </body> 87 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698