tor-browser

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

transform-table-010-notref.html (548B)


      1 <!DOCTYPE html>
      2 <html>
      3  <head>
      4    <title>CSS Reftest Reference</title>
      5    <link rel="author" title="Aryeh Gregor" href="mailto:ayg@aryeh.name">
      6    <style>
      7      body > div > div {
      8        display: table;
      9      }
     10      body > div > div > div {
     11        display: table-row;
     12      }
     13      body > div > div > div > div {
     14        display: table-cell;
     15      }
     16    </style>
     17  </head>
     18  <body>
     19    <div>
     20      <div>
     21        <div>
     22          <div>
     23            <div>Some text</div>
     24          </div>
     25        </div>
     26      </div>
     27    </div>
     28  </body>
     29 </html>