Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 <!-- | 1 <!-- |
| 2 Test for bug69296. | 2 Test for bug69296. |
| 3 Collapsed borders should not disappear. | 3 Collapsed borders should not disappear. |
| 4 --> | 4 --> |
| 5 <html> | 5 <html> |
| 6 <head> | 6 <head> |
| 7 <style> | 7 <style> |
| 8 BODY { | 8 BODY { |
| 9 margin: 20px; | 9 margin: 20px; |
| 10 } | 10 } |
| 11 TABLE { | 11 TABLE { |
| 12 border-collapse: collapse; | 12 border-collapse: collapse; |
| 13 } | 13 } |
| 14 TD { | 14 TD { |
| 15 width: 50px; | 15 width: 50px; |
| 16 height: 50px; | 16 height: 50px; |
| 17 border: 1px solid #333333; | 17 border: 1px solid #333333; |
| 18 } | 18 } |
| 19 #row1 { | |
| 20 background-color: #ddd; | |
| 21 color: #111; | |
| 22 } | |
| 23 </style> | 19 </style> |
| 24 </head> | 20 </head> |
| 25 <body> | 21 <body> |
| 26 <table> | 22 <table> |
| 27 <tr id="row1"> | 23 <tr id="row1"> |
| 28 <td valign="top"/> | 24 <td valign="top"/> |
| 29 <td/> | 25 <td/> |
| 30 <td> | 26 <td> |
| 31 <div> | 27 <div> |
| 32 <div style="width: 20px; height: 20px; background: lime; "/> | 28 <div style="width: 20px; height: 20px; background: lime; "/> |
| 33 </div> | 29 </div> |
| 34 </td> | 30 </td> |
| 35 </tr> | 31 </tr> |
| 36 <tr id="row2"> | 32 <tr id="row2"> |
| 37 <td/> | 33 <td/> |
| 38 <td/> | 34 <td/> |
| 39 <td/> | 35 <td/> |
| 40 </tr> | 36 </tr> |
| 41 </table> | 37 </table> |
| 42 </body> | 38 </body> |
| 43 </html> | 39 </html> |
| OLD | NEW |