tor-browser

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

video-005-print.html (833B)


      1 <!DOCTYPE html>
      2 <html class="reftest-wait">
      3 <link rel="author" title="Emily McDonough" href="mailto:emcdonough@mozilla.com">
      4 <link rel="match" href="reference/teal-16x16-masked.html">
      5 <style>
      6 *{margin: 0; padding: 0;}
      7 div{
      8    margin: 5px;
      9    width: 16px;
     10    height: 16px;
     11    background: hotpink;
     12 }
     13 #mask{
     14    margin: 0;
     15    position: absolute;
     16    top: 4px;
     17    left: 4px;
     18    width: 14px;
     19    height: 14px;
     20    border: teal 2px solid;
     21    background: initial;
     22 }
     23 </style>
     24 <script>
     25 function ready(){
     26    document.documentElement.removeAttribute("class");
     27 }
     28 </script>
     29 <!-- Mask to hide the edges of the video and try to reduce differences
     30  caused by blurriness in PDF output. -->
     31 <div id="mask"></div>
     32 <div>
     33  <video preload="auto" onloadeddata="ready()" onerror="ready()" src="support/16x16-teal-av1.mp4"></video>
     34 </div>
     35 </html>