aboutsummaryrefslogtreecommitdiffstats
path: root/tests/wpt/css-tests/css-transforms-1_dev/xhtml1/transform-transformable-inline-table.xht
blob: 7d1111ac40e23d04a56ee6f87014f8d6d3a46bd2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"><head>
    <title>CSS Test (Transforms): Transformability of Inline-Table</title>
    <link href="mailto:ayg@aryeh.name" rel="author" title="Aryeh Gregor" />
    <link href="http://www.w3.org/TR/css-transforms-1/#transform-property" rel="help" />
    <meta content="This tests that transforms specified on an
    inline-table work as expected." name="assert" />
    <link href="reference/transform-transformable-inline-table-ref.xht" rel="match" />
    <style>
      body {
        overflow: hidden;
      }
      div {
        display: inline-table;
        transform: translate(50px, 50px);
      }
    </style>
  </head>
  <body>
    <div>Some text</div>
  

</body></html>