OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <style> | 4 <style> |
5 table | 5 table |
6 { | 6 { |
7 border:solid black 1px; | 7 border:solid black 1px; |
8 } | 8 } |
9 </style> | 9 </style> |
10 </head> | 10 </head> |
11 <body> | 11 <body> |
12 <p>Test for bug <a href="https://bugs.webkit.org/show_bug.cgi?id=84260">84260</a
>: REGRESSION(102040): Auto-table layout with percent width doesn't shrink-to-fi
t content a cell with colspan</p> | 12 <p>Test for bug <a href="https://bugs.webkit.org/show_bug.cgi?id=84260">84260</a
>: REGRESSION(102040): Auto-table layout with percent width doesn't shrink-to-fi
t content a cell with colspan</p> |
13 <p>For this test to pass, the table below should fit its content.</p> | 13 <p>For this test to pass, the table below should fit its content.</p> |
14 <table> | 14 <table> |
15 <tr> | 15 <tr> |
16 <td></td><td></td> | 16 <td></td><td></td> |
17 </tr> | 17 </tr> |
18 <tr> | 18 <tr> |
19 <td colspan="2">Lorem</td> | 19 <td colspan="2">Lorem</td> |
20 </tr> | 20 </tr> |
21 </table> | 21 </table> |
22 </body> | 22 </body> |
23 </html> | 23 </html> |
OLD | NEW |