tor-browser

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

nest-containing-forgiving-ref.html (349B)


      1 <!DOCTYPE html>
      2 <title>Nest-containing in forgiving parsing</title>
      3 <style>
      4  .test {
      5    background-color: green;
      6    width: 100px;
      7    height: 100px;
      8    display: grid;
      9  }
     10 
     11  body * + * {
     12    margin-top: 8px;
     13  }
     14 </style>
     15 <body>
     16  <p>Tests pass if <strong>block is green</strong></p>
     17  <div class="test"></div>
     18  <div class="test"></div>
     19 </body>