Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-multicol/hit-test-child-under-perspective.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<link rel="author" title="Xianzhu Wang" href="mailto:wangxianzhu@chromium.org">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div style="column-count: 2; width: 200px; height: 100px">
<div style="perspective: 100px">
<div id="child1" style="height: 100px; position: relative"></div>
<div id="child2" style="height: 100px; position: relative"></div>
</div>
</div>
<script>
test(()=> {
assert_equals(document.elementFromPoint(50, 50), child1);
assert_equals(document.elementFromPoint(150, 50), child2);
}, "test");
</script>