tor-browser

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

body-fills-html-quirk.html (450B)


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