summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/table/table-in-table-percent-width-quirks-mode.html
blob: a9aee6c81f4be17d90fad45455c6d874a350df67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<html>
<body>

<div style='display:table; border: 1px solid black; width: 500px; height: 500px;'>
  <div style='display:table-row; border: 1px solid red;'>
    <div style='display:table-cell; border: 1px solid blue;'>
      <div style='display:table; border: 1px solid green; width: 100%; height: 100%; padding: 10px; box-sizing: border-box; -moz-box-sizing: border-box;'>
        <div style='display:table-row; border: 1px solid cyan;'>
          <div style='display:table-cell; border: 1px solid magenta;'>
          </div>
        </div>
      </div>
    </div>
  </div>
</div>
</body>
</html>