OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 </head> | 4 </head> |
5 <body> | 5 <body> |
6 <!-- | 6 <!-- |
7 https://bugs.webkit.org/show_bug.cgi?id=76664 | 7 https://bugs.webkit.org/show_bug.cgi?id=76664 |
8 The 'a' should be in a red box that sits on the bottom left of an enclos
ing yellow box. | 8 The 'a' should be in a red box that sits on the bottom left of an enclos
ing yellow box. |
9 --> | 9 --> |
10 <style> | 10 <style> |
11 .caption1 { background-color:yellow; width: 40px; } | 11 .caption1 { background-color:yellow; width: 40px; } |
12 .fl { float: left; background-color:red;} | 12 .fl { float: left; background-color:red;} |
13 </style> | 13 </style> |
14 <table> | 14 <table> |
15 <caption class="caption1">caption1<div class="fl">a</div></caption> | 15 <caption class="caption1">caption1<div class="fl">a</div></caption> |
16 </table> | 16 </table> |
17 </body> | 17 </body> |
18 </html> | 18 </html> |
OLD | NEW |