summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-transforms/transform-table-010-notref.html
blob: c96a6e13219b46231f15e4e415fe72161a9812cf (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
25
26
27
28
29
<!DOCTYPE html>
<html>
  <head>
    <title>CSS Reftest Reference</title>
    <link rel="author" title="Aryeh Gregor" href="mailto:ayg@aryeh.name">
    <style>
      body > div > div {
        display: table;
      }
      body > div > div > div {
        display: table-row;
      }
      body > div > div > div > div {
        display: table-cell;
      }
    </style>
  </head>
  <body>
    <div>
      <div>
        <div>
          <div>
            <div>Some text</div>
          </div>
        </div>
      </div>
    </div>
  </body>
</html>