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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/inline/middle-continuation-inherits-visibility-from-inline-parent.html

Issue 2806123002: Restore behaviour of middle anonymous blocks inheriting style from inline parents (Closed)
Patch Set: bug 706324 Created 3 years, 8 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
OLDNEW
(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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698