tor-browser

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

bug-463204.html (839B)


      1 <!--
      2     Any copyright is dedicated to the Public Domain.
      3     http://creativecommons.org/licenses/publicdomain/
      4 
      5     bug 463204
      6 -->
      7 <html>
      8  <head>
      9    <style>
     10      span {
     11        background-image: -moz-element(#g);
     12        display: inline-block;
     13        margin-left: 0.6px;
     14      }
     15      #repeat {
     16        width: 38px;
     17        height: 38px;
     18        background-repeat: repeat;
     19      }
     20      #norepeat {
     21        width: 19px;
     22        height: 19px;
     23        background-repeat: no-repeat;
     24        background-position: center center;
     25      }
     26    </style>
     27  </head>
     28  <body>
     29    <span id="repeat"></span><br/>
     30    <span id="norepeat"></span>
     31    <div style="overflow:hidden; height:0px">
     32      <div id="g" style="width:17px; height:17px; border:1px solid red;
     33                         background: orange;"></div>
     34    </div>
     35  </body>
     36 </html>