tor-browser

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

1332588-1.html (617B)


      1 <!DOCTYPE html>
      2 <html class="reftest-wait">
      3 <head>
      4 <meta charset="UTF-8">
      5 <style>
      6 span {
      7  width: 100px;
      8  height: 100px;
      9  background-color: red;
     10 }
     11 </style>
     12 <script>
     13 window.onload = function() {
     14  let body = document.getElementsByTagName("body")[0];
     15  let o_0 = document.createElement("span");
     16  body.appendChild(o_0);
     17  o_0.animate([{ "padding": "57pt", "transform": "none" },
     18               { "padding": "57pt", "transform": "rotate(90deg)" }] , 10000);
     19  body.appendChild(document.createElement("colgroup"));
     20  document.documentElement.classList.remove("reftest-wait");
     21 };
     22 </script>
     23 </head>
     24 <body></body>
     25 </html>