tor-browser

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

transform-table-001.html (797B)


      1 <!DOCTYPE html>
      2 <html>
      3  <head>
      4    <title>CSS Test (Transforms): Transform on Table</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 an appropriately-crafted
      8    transform applied to a table works the same as if was applied to a wrapper
      9    div.'>
     10    <link rel="match" href="transform-table-001-ref.html">
     11    <link rel="mismatch" href="transform-table-001-notref.html">
     12    <style>
     13      table {
     14        transform: translate(200px) rotate(180deg);
     15        transform-origin: left;
     16      }
     17    </style>
     18  </head>
     19  <body>
     20    <table>
     21      <caption>Hello</caption>
     22      <tr><td>there!</td></tr>
     23    </table>
     24  </body>
     25 </html>