tor-browser

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

stretch-quirk-001-ref.html (644B)


      1 <!-- no doctype, to trigger quirks mode -->
      2 <meta charset="utf-8">
      3 <link rel="author" title="Daniel Holbert" href="mailto:dholbert@mozilla.com">
      4 <title>CSS Reference Case</title>
      5 <style>
      6  body {
      7    margin: 0;
      8  }
      9  body > * {
     10    box-sizing: border-box;
     11    height: 100vh;
     12 
     13    /* The rest of these styles are just for cosmetics & consistency: */
     14    width: 40px;
     15    border: 5px solid blue;
     16    vertical-align: top;
     17    margin: 0 10px 0 0;
     18    background: cyan;
     19  }
     20 </style>
     21 <body>
     22  <div style="display: inline-block">IB</div>
     23  <canvas></canvas>
     24  <iframe></iframe>
     25  <button>B</button>
     26  <input value="i">
     27  <textarea></textarea>
     28 </body>