tor-browser

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

html-fills-viewport-quirk.html (432B)


      1 <!DOCTYPE quirks-mode>
      2 <link
      3  rel="help"
      4  href="https://quirks.spec.whatwg.org/#the-html-element-fills-the-viewport-quirk"
      5 />
      6 <link rel="match" href="html-fills-viewport-quirk-ref.html" />
      7 <style>
      8  html {
      9    border: solid;
     10    margin: 10px 11px 12px 14px;
     11  }
     12  body {
     13    margin: 0;
     14  }
     15  span {
     16    display: inline-block;
     17    width: 100px;
     18    height: 100px;
     19    background: green;
     20  }
     21 </style>
     22 <body>
     23  <span></span>
     24 </body>