tor-browser

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

tab-size-integer-001-ref.html (698B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4    <title>CSS Text Test: tab-size: 4</title>
      5    <link rel="author" title="David Storey" href="mailto:david@openweb.io">
      6    <style type="text/css">
      7        .container {
      8            position: absolute;
      9        }
     10        .green {
     11            position: absolute;
     12            top: 0;
     13            left: 0;
     14            background: green;
     15         }
     16        .red {
     17            position: absolute;
     18            top: 0;
     19            left: 0;
     20            background: red;
     21            tab-size: 4;
     22        }
     23    </style>
     24 </head>
     25 <body>
     26    <p>The test passes if there is no red.</p>
     27    <div class="container">
     28        <pre class="green">    </pre>
     29    </div>
     30 </body>
     31 </html>