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: list-style-type in rtl context</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/generate.html#list-style">
7 <meta name="flags" content="">
8 <meta name="assert" content="list-style-type should be correctly applied in rtl context">
9 <style type="text/css">
10 body {direction:rtl;}
11 ul {
12 list-style-type: square;
13 }
14 </style>
15 </head>
16 <body dir="rtl">
17 <ul>
18 <li>This list item should have a square to the right</li>
19 </ul>
20 </body>
21 </html>