tor-browser

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

content-visibility-background-clip-crash.html (556B)


      1 <!doctype html>
      2 <html>
      3 <body>
      4    <style>
      5        body {
      6            content-visibility: hidden;
      7            background-clip: text;
      8            position: absolute;
      9            border-right-style: dashed;
     10            border-top-style: ridge;
     11            background-color: green;
     12        }
     13    </style>
     14    <script>
     15        var p1 = document.createElement('p');
     16        var p2 = document.createElement('p');
     17        document.body.appendChild(p1);
     18        document.body.appendChild(p2);
     19        p1.scroll();
     20        p2.remove();
     21    </script>
     22 </body>
     23 </html>