bidi-override-002.xht (985B)
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 cell</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 be applied to table-cell content when specified on the cell"/> 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> 22 <tr> 23 <td class="override"> 24 cba 25 </td> 26 </tr> 27 </table> 28 29 <p> 30 abc 31 </p> 32 33 </body> 34 </html>