tor-browser

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

bidi-override-001.xht (981B)


      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: unicode-bidi: bidi-override on table</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-unicode-bidi"/>
      7     <link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#direction"/>
      8     <meta name="assert" content="bidi-override should not be applied to table cell content when specified on table"/>
      9     <style type="text/css"><![CDATA[
     10       .override {
     11       direction: rtl;
     12       unicode-bidi: bidi-override;
     13       }
     14     ]]></style>
     15   </head>
     16 
     17   <body>
     18     <p>
     19       The lines below should be identical, except whitespace:
     20     </p>
     21     <table class="override">
     22       <tr>
     23 	<td>
     24 	  abc
     25 	</td>
     26       </tr>
     27     </table>
     28 
     29     <p>
     30       abc
     31     </p>
     32 
     33   </body>
     34 </html>