tor-browser

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

fieldset-003-ref.html (725B)


      1 <!DOCTYPE html>
      2 <html class="reftest-paged">
      3 <head>
      4  <title>Reference: fieldset fragmentation</title>
      5  <link rel="author" title="Mats Palmgren" href="https://bugzilla.mozilla.org/show_bug.cgi?id=471015">
      6  <meta name="flags" content="paged">
      7  <style>
      8 @page { size:5in 3in; margin:0.5in; }
      9 html,body {
     10    color:black; background-color:white; font:0.5in/1 monospace; padding:0; margin:0;
     11 }
     12 fieldset {
     13  position: relative;
     14  padding: 0;
     15  margin: 0;
     16  padding-top: 0.5em;
     17  margin-top: 0.5em;
     18  border: 1em solid black;
     19 }
     20 div {
     21  position: absolute;
     22  top: -1em;
     23  width: 3em;
     24  height: 1em;
     25  background-color: white;
     26 }
     27 </style>
     28 </head>
     29 <body>
     30  <fieldset><div></div>A<br>B</fieldset>
     31  <span>AFTER</span>
     32 </body>
     33 </html>