Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / tables / mozilla_expected_failures / bugs / bug19526.html
blob391f1478d523c8060ddf7d801d5a11d7cc517fd6
1 <html>
2 <head>
3 <title>Testing the use of table height</title>
4 </head>
6 <body>
8 <P> 100 percent height table inside 100 percent height table:</P>
9 <!-- This works -->
10 <table border=1 width="100%" height="100%" bgcolor=grey>
11 <td width="50%">
12 <!-- This does not work -->
13 <table width="100%" height="100%" border=1 bgcolor=yellow>
14 <td width="50%">&nbsp;Inner Table (yellow)</td><td width="50%">&nbsp;</td></tr>
15 </table>
16 </td>
17 <td width="50%">
18 &nbsp;Outer Table (grey)
19 </td>
20 </table>
23 <P> 50 percent height table inside 100 percent height table:</P>
24 <!-- This works -->
25 <table border=1 width="100%" height="100%" bgcolor=grey>
26 <td width="50%">
27 <!-- This does not work -->
28 <table width="100%" height="50%" border=1 bgcolor=yellow>
29 <td width="50%">&nbsp;Inner Table (yellow)</td><td width="50%">&nbsp;</td></tr>
30 </table>
31 </td>
32 <td width="50%">
33 &nbsp;Outer Table (grey)
34 </td>
35 </table>
37 </body>
38 </html>