summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-flexbox/hittest-before-pseudo.html
blob: afba77e06dba12f229779cae6a4b6265d95461bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<link rel="help" href="https://crbug.com/1081789" />
<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>