tor-browser

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

pointerevent_root_computed_style.html (456B)


      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 cs = window.getComputedStyle(document.documentElement).getPropertyValue("pointer-events");
     18        assert_equals(cs, 'none');
     19    });
     20 </script>