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

Side by Side Diff: chrome/test/data/mouseleave.html

Issue 754013007: Fix the wrong relative coordinates from EventDispatch (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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 <html> 1 <html>
2 <head> 2 <head>
3 <style> 3 <style>
4 body { 4 body {
5 margin: 0px; 5 margin: 0px;
6 padding: 0px; 6 padding: 0px;
7 } 7 }
8 #mybox { 8 #mybox {
9 padding: 20px; 9 padding: 200px;
10 margin: 0px; 10 margin: 0px;
11 border: 1px solid #000; 11 border: 1px solid #000;
12 } 12 }
13 #mystatus { 13 #mystatus {
14 border: 1px solid #000; 14 border: 1px solid #000;
15 padding: 20px; 15 padding: 20px;
16 margin: 0px; 16 margin: 0px;
17 } 17 }
18 </style> 18 </style>
19 <script> 19 <script>
(...skipping 13 matching lines...) Expand all
33 document.getElementById("mystatus").innerHTML = state; 33 document.getElementById("mystatus").innerHTML = state;
34 document.title = "left"; 34 document.title = "left";
35 } 35 }
36 </script> 36 </script>
37 </head> 37 </head>
38 <body onload="load()"> 38 <body onload="load()">
39 <div id="mybox" onmouseover="enter()" onmouseout="leave()"></div> 39 <div id="mybox" onmouseover="enter()" onmouseout="leave()"></div>
40 <div id="mystatus"></div> 40 <div id="mystatus"></div>
41 </body> 41 </body>
42 </html> 42 </html>
OLDNEW
« chrome/browser/mouseleave_browsertest.cc ('K') | « chrome/browser/mouseleave_browsertest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698