Rubber-stamped by Brady Eidson.
[webbrowser.git] / LayoutTests / fast / css / first-letter-float.html
blobb5737e8772790f6bd73c1bf712cbaaf2340fc044
1 <html>
2 <head>
3 <style>
4 p.firstLetter:first-letter {
5 float: left;
6 color: green;
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 &ldquo;<span style="color: green;">A</span>-Z&rdquo;.
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>