blob: 123f8ac263b6d86018232a2c5da695b22cca1ad8 [file] [log] [blame]
<!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 = internals.getCurrentCursorInfo();
assert_equals(originalInfo, "type=Pointer");
}
}, '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>