Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / selectors / unqualified-hover-quirks.html
blob532434ae683236626550b9f16fea080863b8225c
1 <html>
2 <head>
3 <style type='text/css'>
4 :hover { background-color: #666; }
5 </style>
7 <script type="text/javascript">
8 function test()
10 if (!window.eventSender)
11 return;
13 document.body.offsetTop; // Force layout. The mouse is not tracked before first layout.
14 eventSender.mouseMoveTo(16, 16); // Hover.
15 document.body.offsetTop; // Update layout for hovered state.
17 </script>
18 </head>
19 <body onload="test()">
20 <h3>Test of unqualifed :hover selector in quirks parsing mode</h3>
22 <p>Moving the mouse anywhere over the document should result no change to the background color.</p>
23 </body>
24 </html>