OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <script src="../../resources/testharness.js"></script> |
| 3 <script src="../../resources/testharnessreport.js"></script> |
| 4 <style> |
| 5 .hidden { |
| 6 visibility:hidden; |
| 7 } |
| 8 </style> |
| 9 <a href="#" class="hidden"> |
| 10 <div id="div">Inside a</div> |
| 11 </a> |
| 12 <script> |
| 13 test(function() { |
| 14 if (window.eventSender) { |
| 15 eventSender.dragMode = false; |
| 16 eventSender.mouseMoveTo(10, 10); |
| 17 var originalInfo = window.internals.getCurrentCursorInfo(); |
| 18 assert_equals(originalInfo, "type=Pointer hotSpot=0,0"); |
| 19 } |
| 20 }, 'crbug.com/706324: Middle continuations should inherit the style of their inl
ine parent, so when the cursor is placed over the anonymous block it should rema
in a pointer.'); |
| 21 </script> |
OLD | NEW |