bidi-unicode-bidi-003.xht (1040B)
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: embed - nested ltr and rtl</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="unicode-bidi: embed should open a new bidi embedding level for inline-level element"/> 9 <style type="text/css"><![CDATA[ 10 .firstembed {direction: ltr; unicode-bidi: embed} 11 .secondembed {direction: rtl; unicode-bidi: embed; font-weight: bold;} 12 ]]></style> 13 </head> 14 15 <body> 16 17 <p>You should see a longer arabic word to the left, and a shorter one to the right:</p> 18 19 <div class="firstembed"> 20 <span class="secondembed">من and أمريكا</span> 21 </div> 22 23 </body> 24 </html>