Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
            
- /css/css-break/hit-test-transformed-inline.html - WPT Dashboard Interop Dashboard
 
 
<!DOCTYPE html>
<link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css">
<style>
  body {
    margin: 0;
  }
  #mc {
    columns: 2;
    gap: 0;
    column-fill: auto;
    width: 600px;
    height: 20px;
    line-height: 20px;
    font: 20px/1 ahem;
  }
</style>
<div id="mc">
  <span id="span" style="backface-visibility:hidden; filter:blur(1px);">
    x<child id="firstchild">x</child><br>
    <child id="secondchild">x</child>x
  </span>
</div>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
  promise_setup(() => document.fonts.ready);
  promise_test(async () => {
    assert_equals(document.elementFromPoint(10, 10).id, "span");
  }, "First x");
  promise_test(async () => {
    assert_equals(document.elementFromPoint(30, 10).id, "firstchild");
  }, "First child");
  promise_test(async () => {
    assert_equals(document.elementFromPoint(310, 10).id, "secondchild");
  }, "Second child");
  promise_test(async () => {
    assert_equals(document.elementFromPoint(330, 10).id, "span");
  }, "Last x");
</script>