OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <style> | |
3 a { | |
4 background-color:red; | |
5 width:100px; | |
mstensho (USE GERRIT)
2017/04/19 09:32:48
width and height don't apply to inline, so these a
| |
6 height:100px; | |
7 } | |
8 .hidden { | |
9 visibility:hidden; | |
10 } | |
11 </style> | |
12 <a href="#" class="hidden"> | |
13 <div id="div">Inside a</div> | |
14 </a> | |
15 <p>crbug.com/706324: Middle continuations should inherit the style of their inli ne parent, so when the cursor is placed over the anonymous block it should remai n a pointer.</p> | |
16 <div id="console"> | |
17 Test not run. | |
18 </div> | |
19 <script> | |
20 if (window.testRunner) | |
21 testRunner.dumpAsText(); | |
mstensho (USE GERRIT)
2017/04/19 09:32:48
Could you rewrite this as a testharness test? Then
| |
22 if (window.eventSender) { | |
23 eventSender.dragMode = false; | |
24 eventSender.mouseMoveTo(10, 10); | |
25 var originalInfo = window.internals.getCurrentCursorInfo(); | |
26 document.getElementById("console").textContent = originalInfo; | |
27 } | |
28 </script> | |
OLD | NEW |