83958-1a.html (886B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="UTF-8"> 5 <title>Bidirectional Text Test 2 - Formatting Characters</title> 6 <style> 7 body { font-size: 300%; } 8 p { font-family: monospace; text-align: left; margin: 0; } 9 </style> 10 </head> 11 <!-- Testcases based on https://dbaron.org/css/test/bidi2_charcode by L. David Baron. --> 12 <body> 13 <p>The following lines should all read "ABCDEFGHI":</p> 14 <p>ABCDEFGHI</p> 15 <p dir="rtl">‫ABCDEFGHI‬</p> 16 <p dir="rtl">‫ABC<span>DEF</span>GHI‬</p> 17 <p dir="rtl">‮IHGFEDCBA‬</p> 18 <p dir="rtl">‮IHG<span>FED</span>CBA‬</p> 19 <p dir="rtl">‮IHG‫DEF‬CBA‬</p> 20 <p dir="rtl">‮IHG‮FED‬CBA‬</p> 21 <p dir="rtl">‮IHG‮FED‬CBA‬</p> 22 <p dir="rtl">‮IHG‭DEF‬CBA‬</p> 23 </body> 24 </html>