bidi-003-ref.xht (1498B)
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 8 <title>CSS Reftest Reference</title> 9 <link rel="author" title="GĂ©rard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" /> 10 11 <style type="text/css"><![CDATA[ 12 div > p 13 { 14 background-color: #FFC; 15 border: solid; 16 margin: 1em; 17 padding: 0.5em; 18 white-space: nowrap; 19 } 20 21 span {line-height: 3em;} 22 23 span.top-left-bottom 24 { 25 border-style: solid none solid solid; 26 padding: 0.4em 0 0.4em 1em; 27 } 28 29 .navy {color: navy;} 30 31 .orange {color: orange;} 32 33 span.top-right-bottom 34 { 35 border-style: solid solid solid none; 36 padding: 0.4em 1em 0.4em 0; 37 } 38 ]]></style> 39 40 </head> 41 42 <body> 43 44 <p>The following two blocks should be identical, including overflow. (Force bidi: א)</p> 45 46 <div> 47 <p> 48 <span class="top-left-bottom navy"> aaa bbb ccc </span> 49 <span class="top-left-bottom orange"> ddd eee fff </span> 50 ggg hhh iii 51 <span class="top-right-bottom navy"> jjj kkk lll </span> 52 <span class="top-right-bottom orange"> mmm nnn ooo </span> 53 </p> 54 55 <p> 56 <span class="top-left-bottom navy"> aaa bbb ccc </span> 57 <span class="top-left-bottom orange"> ddd eee fff </span> 58 ggg hhh iii 59 <span class="top-right-bottom navy"> jjj kkk lll </span> 60 <span class="top-right-bottom orange"> mmm nnn ooo </span> 61 </p> 62 </div> 63 64 </body> 65 </html>