OLD | NEW |
| (Empty) |
1 <html> | |
2 <head> | |
3 <title>Test for http://bugs.webkit.org/show_bug.cgi?id=12079</title> | |
4 <style type="text/css"> | |
5 div.playground { position: relative; width: 90px; height: 90px; } | |
6 .red { background-color: yellow; } | |
7 .blue { background-color: blue; } | |
8 .green { background-color: green; } | |
9 .zero { height: 0; width: 60px; } | |
10 .half { height: 30px; width: 60px; } | |
11 .full { height: 60px; width: 60px; } | |
12 </style> | |
13 </head> | |
14 <body> | |
15 <div class="playground"> | |
16 <table cellpadding="0" cellspacing="0"> | |
17 <caption id="caption1" class="blue zero"></caption> | |
18 <tbody> | |
19 <tr> | |
20 <td class="red half"></td> | |
21 </tr> | |
22 <tr> | |
23 <td class="green half"></td> | |
24 </tr> | |
25 </tbody> | |
26 </table> | |
27 </div> | |
28 | |
29 <div class="playground"> | |
30 <table cellpadding="0" cellspacing="0"> | |
31 <tbody> | |
32 <tr> | |
33 <td><div id="top" class="blue zero"></div></td> | |
34 </tr> | |
35 </tbody> | |
36 <tbody> | |
37 <tr> | |
38 <td class="red half"></td> | |
39 </tr> | |
40 <tr> | |
41 <td class="green half"></td> | |
42 </tr> | |
43 </tbody> | |
44 </table> | |
45 </div> | |
46 | |
47 <div class="playground"> | |
48 <table cellpadding="0" cellspacing="0"> | |
49 <caption id="caption2" class="half"></caption> | |
50 <tbody> | |
51 <tr> | |
52 <td class="green half"></td> | |
53 </tr> | |
54 <tr> | |
55 <td class="red half"></td> | |
56 </tr> | |
57 </tbody> | |
58 </table> | |
59 </div> | |
60 | |
61 <div class="playground" style="margin-top: 30px;"> | |
62 <table cellpaddin="0" cellspacing="0" style="width: 60px; border-collaps
e: collapse; border: 8px solid green;"> | |
63 <caption style="width: 10px; margin: auto;"> | |
64 <div id="innerDiv" style="height: 15px"></div> | |
65 </caption> | |
66 <tbody> | |
67 <tr><td class="half"></td></tr> | |
68 <tr><td class="half" style="border-top: solid yellow 8px;"></td>
</tr> | |
69 </tbody> | |
70 </table> | |
71 </div> | |
72 </body> | |
73 </html> | |
OLD | NEW |