blob: 1e49e612eb5cae8d581333e08fa171bb6eabf19d [file] [log] [blame]
<!DOCTYPE html>
<link rel="help" href="https://drafts.csswg.org/cssom-view/#dom-document-elementfrompoint" />
<link rel="author" title="Koji Ishii" href="mailto:kojii@chromium.org">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<style>
.ellipsis {
overflow: hidden;
text-overflow: ellipsis;
}
</style>
</head>
<body>
<div style="width: 100px">
<div>
<span><span class="item" style="display: inline-block">XXXXXXXXXXXXXXXXXXXX</span></span>
</div>
<div class="ellipsis">
<span><span class="item" style="display: inline-block">XXXXXXXXXXXXXXXXXXXX</span></span>
</div>
<div class="ellipsis">
<span><span class="item" style="display: inline-flex;">XXXXXXXXXXXXXXXXXXXX</span></span>
</div>
</div>
<div id="log"></div>
<script>
for (const item of document.getElementsByClassName('item')) {
test(() => {
const bounds = item.getBoundingClientRect();
const result = document.elementFromPoint(bounds.x + 10, bounds.y + bounds.height / 2);
assert_equals(result, item);
});
}
</script>
</body>
</html>