tor-browser

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

transform-transformable-table-caption.html (687B)


      1 <!DOCTYPE html>
      2 <html>
      3  <head>
      4    <title>CSS Test (Transforms): Transformability of Table-Caption</title>
      5    <link rel="author" title="Aryeh Gregor" href="mailto:ayg@aryeh.name">
      6    <link rel="help" href="http://www.w3.org/TR/css-transforms-1/#transform-property">
      7    <meta name="assert" content='This tests that transforms specified on a
      8    table-caption work as expected.'>
      9    <link rel="match" href="transform-transformable-table-caption-ref.html">
     10    <style>
     11      body {
     12        overflow: hidden;
     13      }
     14      div {
     15        display: table-caption;
     16        transform: translate(50px, 50px);
     17      }
     18    </style>
     19  </head>
     20  <body>
     21    <div>Some text</div>
     22  </body>
     23 </html>