bidi-001-ref.xht (980B)
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 2 3 <html xmlns="http://www.w3.org/1999/xhtml"> 4 5 <head> 6 7 <title>CSS Reftest Reference</title> 8 9 <link rel="author" title="GĂ©rard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" /> 10 11 <style type="text/css"><![CDATA[ 12 span 13 { 14 color: blue; 15 line-height: 3em; 16 } 17 18 span.top-left-bottom 19 { 20 border-style: solid none solid solid; 21 padding: 0.4em 0 0.4em 1em; 22 } 23 24 span.top-right-bottom 25 { 26 border-style: solid solid solid none; 27 padding: 0.4em 1em 0.4em 0; 28 } 29 ]]></style> 30 31 </head> 32 33 <body> 34 35 <p>The following two lines should be identical. (Force bidi: א)</p> 36 37 <p><span class="top-left-bottom">AAABBBCCC</span>DDDEEEFFF<span class="top-right-bottom">GGGHHHIII</span>JJJKKKLLL</p> 38 39 <p><span class="top-left-bottom">AAABBBCCC</span>DDDEEEFFF<span class="top-right-bottom">GGGHHHIII</span>JJJKKKLLL</p> 40 41 </body> 42 </html>