summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-transforms/transform-table-004-ref.html
blob: b70ca674967170e67eeded92444eb4e76e15ee75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html>
  <head>
    <title>CSS Reftest Reference</title>
    <link rel="author" title="Aryeh Gregor" href="mailto:ayg@aryeh.name">
    <style>
      div {
        transform: translate(200px) rotate(180deg);
        transform-origin: left;
      }
      caption {
        caption-side: bottom;
      }
    </style>
  </head>
  <body>
    <div>
      <table>
        <caption>there!</caption>
        <tr><td>Hello</td></tr>
      </table>
    </div>
  </body>
</html>