Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-grid/grid-model/grid-item-hit-test.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div style="display: grid;">
<div style="height: 100px;">
<div style="float: left; width: 50%; height: 400px; background: hotpink;"></div>
</div>
<div id="target" style="height: 100px; background: cyan;"></div>
</div>
<script>
test(() => {
assert_equals(document.elementFromPoint(150, 150), document.getElementById('target'));
});
</script>