Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-flexbox/hittest-before-pseudo.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<style>
#target::before {
font: 50px/1 Ahem;
display: inline-flex;
content: "X";
border: 2px solid black;
color: green;
}
</style>
<div id=target></div>
<script>
test(function(t) {
const target = document.getElementById('target');
assert_equals(target, document.elementFromPoint(30, 30));
}, 'Hit-testing text within a pseudo-element flex-item should return the flexbox as the hittest result.');
</script>