bidi-override-003.xht (982B)
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</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 not be applied to list item when specified on ul"/> 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 class="override"> 21 <li> 22 PASS 23 </li> 24 </ul> 25 26 </body> 27 </html>