| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <meta charset="utf-8" /> | 4 <meta charset="utf-8" /> |
| 5 <title>HTML Test: dir=auto, start with N, then EN, then L</title> | 5 <title>HTML Test: dir=auto, start with N, then EN, then L</title> |
| 6 <link rel="match" href="dir_auto-N-EN-L-ref.html" /> | 6 <link rel="match" href="dir_auto-N-EN-L-ref.html" /> |
| 7 <link rel="author" title="Matitiahu Allouche" href="mailto:matitiahu.allouch
e@google.com" /> | 7 <link rel="author" title="Matitiahu Allouche" href="mailto:matitiahu.allouch
e@google.com" /> |
| 8 <link rel="author" title="Oren Roth" href="mailto:oren.roth@gmail.com" /> | 8 <link rel="author" title="Oren Roth" href="mailto:oren.roth@gmail.com" /> |
| 9 <link rel="author" title="HTML5 bidi test WG" href="mailto:html5bidi@googleg
roups.com" /> | 9 <link rel="author" title="HTML5 bidi test WG" href="mailto:html5bidi@googleg
roups.com" /> |
| 10 <link rel="help" href="https://html.spec.whatwg.org/multipage/#the-dir-attri
bute" /> | 10 <link rel="help" href="https://html.spec.whatwg.org/multipage/#the-dir-attri
bute" /> |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 border: medium solid gray; | 23 border: medium solid gray; |
| 24 width: 400px; | 24 width: 400px; |
| 25 margin: 20px; | 25 margin: 20px; |
| 26 } | 26 } |
| 27 .comments { | 27 .comments { |
| 28 display: none; | 28 display: none; |
| 29 } | 29 } |
| 30 </style> | 30 </style> |
| 31 </head> | 31 </head> |
| 32 <body> | 32 <body> |
| 33 <div class="instructions" style="display:none"><p>Test passes if the two box
es below look exactly the same.</p></div> | 33 <div class="instructions"><p>Test passes if the two boxes below look exactly
the same.</p></div> |
| 34 <div class="test"> | 34 <div class="test"> |
| 35 <div dir="ltr"> | 35 <div dir="ltr"> |
| 36 <p dir="ltr">@123!</p> | 36 <p dir="ltr">@123!</p> |
| 37 </div> | 37 </div> |
| 38 <div dir="rtl"> | 38 <div dir="rtl"> |
| 39 <p dir="ltr">@123!</p> | 39 <p dir="ltr">@123!</p> |
| 40 </div> | 40 </div> |
| 41 </div> | 41 </div> |
| 42 <div class="ref"> | 42 <div class="ref"> |
| 43 <div dir="ltr"> | 43 <div dir="ltr"> |
| 44 <p dir="ltr">@123!</p> | 44 <p dir="ltr">@123!</p> |
| 45 </div> | 45 </div> |
| 46 <div dir="rtl"> | 46 <div dir="rtl"> |
| 47 <p dir="ltr">@123!</p> | 47 <p dir="ltr">@123!</p> |
| 48 </div> | 48 </div> |
| 49 </div> | 49 </div> |
| 50 </body> | 50 </body> |
| 51 </html> | 51 </html> |
| OLD | NEW |