tor-browser

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

bidi-direction-001.xht (886B)


      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: direction:rtl on body</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-direction"/>
      7     <link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#direction"/>
      8     <meta name="assert" content="direction:rtl on body should inherit to paragraphs"/>
      9     <style type="text/css"><![CDATA[
     10       body {direction: rtl;}
     11       .passcond {direction:ltr;}
     12       .control {direction:ltr;text-align:right;}
     13     ]]></style>
     14   </head>
     15 
     16   <body>
     17 
     18     <p class="passcond">The lines below should be identical:</p>
     19     <p class="control">a b c!</p>
     20 
     21     <p>!a b c</p>
     22 
     23 </body>
     24 </html>
     25