Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/cssom-view/elementFromPoint-float-in-relative.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<link rel="author" title="Koji Ishii" href="mailto:kojii@chromium.org">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<body>
<div>
<span style="position: relative">
<span>
<a id="target" href="#" style="float: left">link</a>
</span>
</span>
</div>
<script>
test(() => {
let target = document.getElementById('target');
let bounds = target.getBoundingClientRect();
let result = document.elementFromPoint(bounds.left + 1, bounds.top + 1);
assert_equals(result, target);
});
</script>
</body>