tor-browser

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

outline-on-table.html (342B)


      1 <!DOCTYPE HTML>
      2 <html class="reftest-wait">
      3 <style>
      4 #target {
      5  display: table;
      6  width: 100px;
      7  height: 100px;
      8 }
      9 </style>
     10 <div id="target"></div>
     11 <script>
     12 document.addEventListener("MozReftestInvalidate", () => {
     13  target.style.outline = "1px solid black";
     14  document.documentElement.classList.remove("reftest-wait");
     15 });
     16 </script>
     17 </html>