tor-browser

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

filter-on-continuation-box-01.html (527B)


      1 <!DOCTYPE html>
      2 <html class="reftest-wait">
      3 <style type="text/css">
      4  div {
      5    border: 1px solid grey;
      6    width: 100px;
      7    color: black;
      8  }
      9 </style>
     10 
     11 <div>
     12  <span id="myspan">Wrapped sentence</span>
     13 </div>
     14 
     15 <script>
     16  document.addEventListener("MozReftestInvalidate", doTest, false);
     17  setTimeout(doTest, 4000); // fallback for running outside reftest
     18 
     19  function doTest() {
     20    document.getElementById("myspan").style.filter = "opacity(50%)";
     21    document.documentElement.removeAttribute('class');
     22  }
     23 </script>
     24 
     25 </html>