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

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

Issue 343080: Revert "Handle GTK enter and leave notification events and pass them to WebKit as " (Closed)
Patch Set: Created 11 years, 1 month 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
« no previous file with comments | « chrome/test/automation/window_proxy.cc ('k') | chrome/test/ui/mouseleave_uitest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <html>
2 <head>
3 <style>
4 body {
5 margin: 0px;
6 padding: 0px;
7 }
8 #mybox {
9 padding: 20px;
10 margin: 0px;
11 border: 1px solid #000;
12 }
13 #mystatus {
14 border: 1px solid #000;
15 padding: 20px;
16 margin: 0px;
17 }
18 </style>
19 <script>
20 var state = '';
21 function load() {
22 state = 'initial';
23 document.getElementById("mystatus").innerHTML = state;
24 document.cookie = '__state=' + state + '; path=/';
25 }
26 function enter() {
27 state += ',entered';
28 document.getElementById("mystatus").innerHTML = state;
29 document.cookie = '__state=' + state + '; path=/';
30 }
31 function leave() {
32 state += ',left';
33 document.getElementById("mystatus").innerHTML = state;
34 document.cookie = '__state=' + state + '; path=/';
35 }
36 </script>
37 </head>
38 <body onload="load()">
39 <div id="mybox" onmouseover="enter()" onmouseout="leave()"></div>
40 <div id="mystatus"></div>
41 </body>
42 </html>
OLDNEW
« no previous file with comments | « chrome/test/automation/window_proxy.cc ('k') | chrome/test/ui/mouseleave_uitest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698