OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <script> |
| 3 if (window.testRunner) { |
| 4 testRunner.keepWebHistory(); |
| 5 testRunner.waitUntilDone(); |
| 6 } |
| 7 </script> |
| 8 <style> |
| 9 a { border: solid red 10px; text-decoration: none; color: initial } |
| 10 a:hover:visited { border-color: green; } |
| 11 </style> |
| 12 <a id="anchor" href="">Should have a green border when hovered</a> |
| 13 <script> |
| 14 if (window.testRunner) { |
| 15 testRunner.displayAsyncThen(function(){ |
| 16 if (window.eventSender); |
| 17 eventSender.mouseMoveTo(anchor.offsetLeft + 10, anchor.offsetTop + 1
0); |
| 18 window.testRunner.notifyDone(); |
| 19 }); |
| 20 } |
| 21 </script> |
OLD | NEW |