| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <meta charset="utf-8"> | 2 <meta charset="utf-8"> |
| 3 <title>CSS Display: Children of multiple td elements with display:contents wrapp
ed in single anonymous table cell</title> | 3 <title>CSS Display: Children of multiple td elements with display:contents wrapp
ed in single anonymous table cell</title> |
| 4 <link rel="author" title="Rune Lillesveen" href="mailto:rune@opera.com"> | 4 <link rel="author" title="Rune Lillesveen" href="mailto:rune@opera.com"> |
| 5 <link rel="help" href="https://drafts.csswg.org/css-display-3/#valdef-display-co
ntents"> | 5 <link rel="help" href="https://drafts.csswg.org/css-display-3/#valdef-display-co
ntents"> |
| 6 <link rel="match" href="display-contents-pass-ref.html"> | 6 <link rel="match" href="display-contents-pass-ref.html"> |
| 7 <style> | 7 <style> |
| 8 /* FIXME: when crbug.com/6122 is fixed we can just use the imported tests */ |
| 9 html { font-kerning: none; } |
| 10 |
| 8 td { | 11 td { |
| 9 display: contents; | 12 display: contents; |
| 10 padding-right: 3em | 13 padding-right: 3em |
| 11 } | 14 } |
| 12 </style> | 15 </style> |
| 13 <p>You should see the word PASS below.</p> | 16 <p>You should see the word PASS below.</p> |
| 14 <table cellpadding="0" cellspacing="0"> | 17 <table cellpadding="0" cellspacing="0"> |
| 15 <tr> | 18 <tr> |
| 16 <td>P</td><td>A</td><td>S</td><td>S</td> | 19 <td>P</td><td>A</td><td>S</td><td>S</td> |
| 17 </tr> | 20 </tr> |
| 18 </table> | 21 </table> |
| OLD | NEW |