list-style-image-006.xht (884B)
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: list-style-image in rtl context</title> 5 <link rel="author" title="Eira Monstad, Opera Software ASA" href="mailto:public-testsuites@opera.com"/> 6 <link rel="reviewer" title="Elika J. Etemad" href="http://fantasai.inkedblade.net/contact" /> 7 <link rel="help" href="http://www.w3.org/TR/CSS21/generate.html#list-style"/> 8 <meta name="assert" content="list-style-image should be positioned to the right in rtl context"/> 9 <style type="text/css"><![CDATA[ 10 body {direction:rtl;} 11 ul { 12 list-style-image: url("support/diamond.png"); 13 } 14 ]]></style> 15 16 </head> 17 <body> 18 <ul> 19 <li>This list item should have a fuchsia diamond to the right</li> 20 </ul> 21 </body> 22 </html>