blob: a9691e53d48eab8114170193a1f3af98ffb87d5f (
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
|
<html>
<body>
The words "One Two Three" should appear down the right side of this page.
<table>
<tr>
<td><table style="table-layout: fixed;"></table></td>
<td>One</td>
</tr>
</table>
<table>
<tr>
<td><table style="table-layout: fixed;"></table></td>
<td><table style="table-layout: fixed;"></table></td>
<td>Two</td>
</tr>
</table>
<table>
<tr>
<td><table style="table-layout: fixed;"></table></td>
<td><table style="table-layout: fixed;"></table></td>
<td><table style="table-layout: fixed;"></table></td>
<td>Three</td>
</tr>
</table>
</body>
</html>
|