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

Side by Side Diff: LayoutTests/fast/forms/label/hover-on-moving-mouse-checkbox-to-parent-label.html

Issue 1064543002: Set hovered state of current Hovered node even if it is also common ancestor of oldHovered node and (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Incorporated review comments Created 5 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
« no previous file with comments | « no previous file | LayoutTests/fast/forms/label/hover-on-moving-mouse-checkbox-to-parent-label-expected.html » ('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 <!DOCTYPE html>
2 <html>
3 <head>
4 <script src="../resources/common.js"></script>
5 <script>
6 function startTest() {
7 var label = document.getElementById("label");
8 var checkbox = document.getElementById("checkbox");
9 // Move mouse to checkbox.
10 hoverOverElement(checkbox);
11 // Move mouse to text after checkbox.
12 hoverOverElement(label);
13 }
14 </script>
15 <style>
16 input[type=checkbox]:hover {
17 box-shadow: inset 5px 5px 5px rgba(0,255,0,1.0);
18 }
19 </style>
20 </head>
21 <body onload="startTest()">
22 <label id="label"><input id="checkbox" type="checkbox" /> Test</label>
23 </body>
24 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/forms/label/hover-on-moving-mouse-checkbox-to-parent-label-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698