| 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: input with dir=auto, script assigns to all N+EN</title> | 5 <title>HTML Test: input with dir=auto, script assigns to all N+EN</title> |
| 6 <link rel="match" href="dir_auto-input-script-N-EN-ref.html" /> | 6 <link rel="match" href="dir_auto-input-script-N-EN-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="Shai Berger" href="mailto:shai@platonix.com" /> | 9 <link rel="author" title="Shai Berger" href="mailto:shai@platonix.com" /> |
| 10 <link rel="author" title="HTML5 bidi test WG" href="mailto:html5bidi@googleg
roups.com" /> | 10 <link rel="author" title="HTML5 bidi test WG" href="mailto:html5bidi@googleg
roups.com" /> |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 border: medium solid gray; | 26 border: medium solid gray; |
| 27 width: 400px; | 27 width: 400px; |
| 28 margin: 20px; | 28 margin: 20px; |
| 29 } | 29 } |
| 30 .comments { | 30 .comments { |
| 31 display: none; | 31 display: none; |
| 32 } | 32 } |
| 33 </style> | 33 </style> |
| 34 </head> | 34 </head> |
| 35 <body> | 35 <body> |
| 36 <div class="instructions" style="display:none"><p>Test passes if the two box
es below look exactly the same.</p></div> | 36 <div class="instructions"><p>Test passes if the two boxes below look exactly
the same.</p></div> |
| 37 <div class="test"> | 37 <div class="test"> |
| 38 <div dir="ltr"> | 38 <div dir="ltr"> |
| 39 <input type="text" dir="ltr" value="@123!" /> | 39 <input type="text" dir="ltr" value="@123!" /> |
| 40 </div> | 40 </div> |
| 41 <div dir="rtl"> | 41 <div dir="rtl"> |
| 42 <input type="text" dir="ltr" value="@123!" /> | 42 <input type="text" dir="ltr" value="@123!" /> |
| 43 </div> | 43 </div> |
| 44 </div> | 44 </div> |
| 45 <div class="ref"> | 45 <div class="ref"> |
| 46 <div dir="ltr"> | 46 <div dir="ltr"> |
| 47 <input type="text" dir="ltr" value="@123!" /> | 47 <input type="text" dir="ltr" value="@123!" /> |
| 48 </div> | 48 </div> |
| 49 <div dir="rtl"> | 49 <div dir="rtl"> |
| 50 <input type="text" dir="ltr" value="@123!" /> | 50 <input type="text" dir="ltr" value="@123!" /> |
| 51 </div> | 51 </div> |
| 52 </div> | 52 </div> |
| 53 </body> | 53 </body> |
| 54 </html> | 54 </html> |
| OLD | NEW |