tor-browser

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

bidi-display-block-001.xht (868B)


      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: bidi and inline with display:block</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#direction"/>
      7     <meta name="assert" content="An inline with display:block should be treated as a paragraph in the bidi algorithm"/>
      8     <style type="text/css"><![CDATA[
      9      div {direction:rtl;}
     10      span {display:block;}
     11     ]]></style>
     12   </head>
     13 
     14   <body>
     15     <p>These lines should be identical:</p>
     16     <div>
     17       <span>
     18 	a (1) &#1575;&#1587;&#1571;&#1604; TEXT
     19       </span>
     20       <span>
     21 	a (1) &#1575;&#1587;&#1571;&#1604; TEXT
     22       </span>
     23     </div>
     24   </body>
     25 </html>