tor-browser

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

transform-transformable-table-caption-ref.html (463B)


      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 {
      8        overflow: hidden;
      9      }
     10      body > div {
     11        position: relative;
     12        top: 50px;
     13        left: 50px;
     14      }
     15      body > div > div {
     16        display: table-caption;
     17      }
     18    </style>
     19  </head>
     20  <body>
     21    <div>
     22      <div>Some text</div>
     23    </div>
     24  </body>
     25 </html>