Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/CSS2/normal-flow/block-in-inline-hittest-margin.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<!DOCTYPE html>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<style>
.target {
background: blue;
width: 100px;
height: 100px;
margin: 100px;
}
</style>
<body>
<a href="#">
<div class="target"></div>
</a>
<script>
const root = document.body;
const target = root.querySelector('.target');
const target_bounds = target.getBoundingClientRect();
const x = target_bounds.x - 20; // "-20" for the margin area.
const y = target_bounds.y + target_bounds.height / 2;
const result = document.elementFromPoint(x, y);
const a = root.querySelector('a');
test(() => {
assert_equals(result, a);
}, target.style.cssText);
</script>
</body>