tor-browser

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

transform-table-005.html (874B)


      1 <!DOCTYPE html>
      2 <html>
      3  <head>
      4    <title>CSS Test (Transforms): Transform on Table with caption-side: bottom</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 is the same as transform-table-002.html,
      8    except the caption has caption-side: bottom.'>
      9    <link rel="match" href="transform-table-004-ref.html">
     10    <link rel="mismatch" href="transform-table-005-notref.html">
     11    <style>
     12      table {
     13        display: inline-table;
     14        transform: translate(200px) rotate(180deg);
     15        transform-origin: left;
     16      }
     17      caption {
     18        caption-side: bottom;
     19      }
     20    </style>
     21  </head>
     22  <body>
     23    <table>
     24      <caption>there!</caption>
     25      <tr><td>Hello</td></tr>
     26    </table>
     27  </body>
     28 </html>