1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
2 <html>
3 <head>
4 <title>CSS Test: :first-letter applied to joined text</title>
5 <link rel="author" title="Eira Monstad, Opera Software ASA" href="mailto:public-testsuites@opera.com">
6 <link rel="help" href="http://www.w3.org/TR/CSS21/selector.html#first-letter">
7 <meta name="flags" content="">
8 <meta name="assert" content=":first-letter applied to joined text should not break joining">
9 <style type="text/css">
10 .test:first-letter {
11 color: blue;
12 }
13 .test, .control {
14 font-size: 2em;
15 }
16 </style>
17 </head>
18 <body>
19
20 <p>The rightmost half of the rightmost compound on the first line below should be blue. Except for color the two lines below should be identical.</p>
21
22 <p class="test">بائعة</p>
23
24 <p class="control">بائعة</p>
25
26 </body>
27 </html>