mitz@apple.com | 20fdf97 | 2008-03-14 20:34:01 +0000 | [diff] [blame] | 1 | <html> |
| 2 | <head> |
| 3 | <style> |
| 4 | p.firstLetter:first-letter { |
| 5 | float: left; |
| 6 | color: green; |
| 7 | } |
| 8 | </style> |
| 9 | </head> |
| 10 | <body> |
| 11 | <p> |
| 12 | Test for <i><a href="http://bugs.webkit.org/show_bug.cgi?id=17834">http://bugs.webkit.org/show_bug.cgi?id=17834</a> |
| 13 | REGRESSION: floated first-letter does not work when included in table</i>. |
| 14 | </p> |
| 15 | <p> |
| 16 | The following three lines should look like “<span style="color: green;">A</span>-Z”. |
| 17 | </p> |
| 18 | <table> |
| 19 | <tbody> |
| 20 | <tr> |
| 21 | <td> |
| 22 | <div><p class="firstLetter">A-Z</p></div> |
| 23 | </td> |
| 24 | </tr> |
| 25 | </tbody> |
| 26 | </table> |
| 27 | <table> |
| 28 | <tbody> |
| 29 | <tr> |
| 30 | <td> |
| 31 | <p class="firstLetter">A-Z</p> |
| 32 | </td> |
| 33 | </tr> |
| 34 | </tbody> |
| 35 | </table> |
| 36 | <p class="firstLetter">A-Z</p> |
| 37 | </body> |
| 38 | </html> |