summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/table/auto-with-percent-height.html
blob: 13ed444bc6be7b71ceb79aee231e7893fb3f9308 (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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
<html>
<head>
<style>
.table {
  background-color: purple;
  color: white;
  height: 100%;
}

.outer {
  border: 3px solid red;
  margin: 1em;
}
</style>
</head>
<body>

<table class=outer>
  <tr><td><table class=table><tr><td>Table One</table><table class=table><tr><td>Table Two</table></td></tr>
</table>

<table class=outer>
  <tr><td><div class=table>Div One</div><div class=table>Div Two</div>
</table>