tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

hit-test-child-under-perspective.html (675B)


      1 <!DOCTYPE html>
      2 <link rel="author" title="Xianzhu Wang" href="mailto:wangxianzhu@chromium.org">
      3 <link rel="help" href="https://crbug.com/1308752">
      4 <script src="/resources/testharness.js"></script>
      5 <script src="/resources/testharnessreport.js"></script>
      6 <div style="column-count: 2; width: 200px; height: 100px">
      7  <div style="perspective: 100px">
      8    <div id="child1" style="height: 100px; position: relative"></div>
      9    <div id="child2" style="height: 100px; position: relative"></div>
     10  </div>
     11 </div>
     12 <script>
     13  test(()=> {
     14    assert_equals(document.elementFromPoint(50, 50), child1);
     15    assert_equals(document.elementFromPoint(150, 50), child2);
     16  }, "test");
     17 </script>