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

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: Restore behaviour of middle anonymous blocks inheriting style from inline parents 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 <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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698