tor-browser

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

1379696.html (248B)


      1 <!DOCTYPE html>
      2 <style>
      3  .bar:before {
      4    content:'SHOULD NOT BE ORANGE'
      5  }
      6  .foo:before {
      7    content:'SHOULD BE ORANGE'
      8  }
      9  :-moz-any(.foo):before {
     10    background-color: orange;
     11  }
     12 </style>
     13 <div class="bar"></div>
     14 <div class="foo"></div>