tor-browser

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

tab-size-percent-001.html (1144B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4    <title>CSS Text Test: tab-size: 100%</title>
      5    <link rel="author" title="David Storey" href="mailto:david@openweb.io">
      6    <link rel="reviewer" title="Rebecca Hauck" href="mailto:rhauck@adobe.com">
      7    <link rel="help" href="http://www.w3.org/TR/css-text-3/#tab-size">
      8    <link rel="match" href="tab-size-length-001-ref.html">
      9    <meta name="assert" content="Tab-size percentage values are not allowed">
     10    <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
     11    <style type="text/css">
     12        .container {
     13            position: absolute;
     14        }
     15        .test {
     16            font-family: Ahem;
     17            font-size: 20px;
     18 
     19            position: absolute;
     20            top: 0;
     21            left: 0;
     22        }
     23        .green {
     24            background: green;
     25         }
     26        .red {
     27            background: red;
     28            tab-size: 0;
     29            tab-size: 100%;
     30        }
     31    </style>
     32 </head>
     33 <body>
     34    <p>The test passes if there is no red.</p>
     35    <div class="container">
     36        <pre class="red test">&#09;</pre>
     37        <pre class="green test">  </pre>
     38    </div>
     39 </body>
     40 </html>