tor-browser

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

pointerevent_root_hit_test.html (433B)


      1 <!doctype html>
      2 <meta charset=utf-8>
      3 <title></title>
      4 <script src=/resources/testharness.js></script>
      5 <script src=/resources/testharnessreport.js></script>
      6 <style type="text/css">
      7    :root {
      8        pointer-events: none;
      9    }
     10 </style>
     11 <html>
     12    <body>
     13    </body>
     14 </html>
     15 <script>
     16    test(() => {
     17        let element = document.elementFromPoint(50, 50);
     18        assert_equals(element, document.documentElement);
     19    });
     20 </script>