bidi-tab-001-ref.html (870B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <title>CSS Text Test: Interaction between tabs and bidi</title> 4 <link rel="author" title="Koji Ishii" href="mailto:kojii@chromium.org"> 5 <link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net"> 6 <style> 7 div { 8 font-family: monospace; 9 font-size: 20px; 10 line-height: 1; 11 white-space: pre; 12 width: 10ch; 13 background: blue; 14 color: blue; 15 } 16 span { 17 background: yellow; 18 } 19 </style> 20 <p>The test passes if the two boxes are identical. 21 22 <div dir=ltr><span dir=ltr>	0</span></div> 23 <div dir=rtl><span dir=rtl>	0</span></div> 24 <div dir=ltr><span dir=ltrl>	0</span></div> 25 <div dir=rtl><span dir=rtl>	0</span></div> 26 27 <br> 28 29 <div dir=ltr><span dir=ltr>	0</span></div> 30 <div dir=rtl><span dir=rtl>	0</span></div> 31 <div dir=ltr><span dir=ltrl>	0</span></div> 32 <div dir=rtl><span dir=rtl>	0</span></div>