blob: b5737e8772790f6bd73c1bf712cbaaf2340fc044 [file] [log] [blame]
mitz@apple.com20fdf972008-03-14 20:34:01 +00001<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 &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>