tor-browser

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

1153695.html (661B)


      1 <!DOCTYPE html>
      2 <html>
      3 
      4    <head>
      5        <meta charset="UTF-8">
      6        <script>
      7            function boom()
      8            {
      9                document.documentElement.offsetHeight;
     10                document.body.appendChild(document.getElementById("x"));
     11                document.documentElement.offsetHeight;
     12            }
     13        </script>
     14    </head>
     15 
     16    <body style="column-count: 4;" onload="boom();">
     17        <div style="float: left; height: 10px; width: 10px;">
     18            <div id="x">
     19                <div style="height: 80px;"></div>
     20                <div style="float: left; height: 10px;"></div>
     21            </div>
     22        </div>
     23    </body>
     24 
     25 </html>