bidi-override-004.xht (977B)
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: unicode-bidi: bidi-override on list item</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/visuren.html#propdef-unicode-bidi"/> 7 <link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#direction"/> 8 <meta name="assert" content="bidi-override should be applied when specified on list item"/> 9 <style type="text/css"><![CDATA[ 10 ul, li { margin: 1em 2em; padding: 0; } 11 .override { 12 direction: rtl; 13 unicode-bidi: bidi-override; 14 } 15 ]]></style> 16 </head> 17 18 <body> 19 <p>Test passes if the word PASS appears below (followed by a bullet on the right).</p> 20 <ul> 21 <li class="override"> 22 SSAP 23 </li> 24 </ul> 25 26 </body> 27 </html>