| Index: third_party/WebKit/LayoutTests/fast/inline/middle-continuation-inherits-visibility-from-inline-parent.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/inline/middle-continuation-inherits-visibility-from-inline-parent.html b/third_party/WebKit/LayoutTests/fast/inline/middle-continuation-inherits-visibility-from-inline-parent.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..5fcb7828bcc4a47bd0cfa6f5a702c4313b1b1522
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/fast/inline/middle-continuation-inherits-visibility-from-inline-parent.html
|
| @@ -0,0 +1,21 @@
|
| +<!DOCTYPE html>
|
| +<script src="../../resources/testharness.js"></script>
|
| +<script src="../../resources/testharnessreport.js"></script>
|
| +<style>
|
| +.hidden {
|
| + visibility:hidden;
|
| +}
|
| +</style>
|
| +<a href="#" class="hidden">
|
| + <div id="div">Inside a</div>
|
| +</a>
|
| +<script>
|
| +test(function() {
|
| + if (window.eventSender) {
|
| + eventSender.dragMode = false;
|
| + eventSender.mouseMoveTo(10, 10);
|
| + var originalInfo = window.internals.getCurrentCursorInfo();
|
| + assert_equals(originalInfo, "type=Pointer hotSpot=0,0");
|
| + }
|
| +}, 'crbug.com/706324: Middle continuations should inherit the style of their inline parent, so when the cursor is placed over the anonymous block it should remain a pointer.');
|
| +</script>
|
|
|