dir-isolation-008a.html (1656B)
1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="utf-8"> 5 <title>The dir attribute: isolated from preceding text, opposite direction</title> 6 <link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'> 7 <link rel="help" href='http://www.w3.org/TR/html5/dom.html#requirements-relating-to-the-bidirectional-algorithm'> 8 <link rel='match' href='reference/dir-isolation-008-ref.html'> 9 <meta name='assert' content='Element content with a dir attribute is treated as a neutral character and directionally isolated from preceding text.'> 10 <style type="text/css"> 11 .test, .ref { font-size: 150%; border: 1px solid orange; margin: 10px; margin-right: 200px; padding: 5px; clear: both; } 12 input { margin: 5px; } 13 </style> 14 </head> 15 <body> 16 <p class="instructions" dir="ltr">Test passes if the two boxes are identical.</p> 17 <!--Notes: 18 Key to entities used below: 19 א ... ו - The first six Hebrew letters (strongly RTL). 20 ‭ - The LRO (left-to-right-override) formatting character. 21 ‬ - The PDF (pop directional formatting) formatting character; closes LRO. 22 The punctuation is moved around in the source to make it easier to do visual comparisons when the test is run. 23 --> 24 <div class="test"> 25 <div dir="ltr">א <span dir="rtl">ב</span></div> 26 <div dir="ltr">a <span dir="rtl">b</span></div> 27 <div dir="rtl">א <span dir="ltr">ב</span></div> 28 <div dir="rtl">a <span dir="ltr">b</span></div> 29 </div> 30 <div class="ref"> 31 <div dir="ltr">‭א ב‬</div> 32 <div dir="ltr">‭a b‬</div> 33 <div dir="rtl">‭ב א‬</div> 34 <div dir="rtl">‭b a‬</div> 35 </div> 36 </body></html>