tor-browser

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

list-style-position-025.xht (1019B)


      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-position 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     <link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#direction"/>
      9     <meta name="assert" content="list-style-position:inside in rtl context should let text flow below the bullet on the right side"/>
     10     <style type="text/css"><![CDATA[
     11       body {direction:rtl;}
     12       ul {
     13       text-align: right;
     14       list-style-position: inside;
     15       }
     16     ]]></style>
     17   </head>
     18 
     19   <body>
     20     <ul>
     21       <li>The x on the next line should have a bullet directly above it<br />x</li>
     22     </ul>
     23 
     24   </body>
     25 </html>