tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

bidi-first-letter-001.xht (924B)


      1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
      2 <html xmlns="http://www.w3.org/1999/xhtml">
      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="assert" content=":first-letter applied to joined text should not break joining"/>
      8     <style type="text/css"><![CDATA[
      9     .test:first-letter {
     10     color: blue;
     11     }
     12     .test, .control {
     13     font-size: 2em;
     14     }
     15     ]]></style>
     16   </head>
     17   <body>
     18 
     19     <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>
     20 
     21     <p class="test">بائعة</p>
     22 
     23     <p class="control">بائعة</p>
     24 
     25   </body>
     26 </html>