| 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 start with L</title
> | 5 <title>HTML Test: input with dir=auto, script assigns to start with L</title
> |
| 6 <link rel="match" href="dir_auto-input-script-L-ref.html" /> | 6 <link rel="match" href="dir_auto-input-script-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="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 14 matching lines...) Expand all Loading... |
| 25 border: medium solid gray; | 25 border: medium solid gray; |
| 26 width: 400px; | 26 width: 400px; |
| 27 margin: 20px; | 27 margin: 20px; |
| 28 } | 28 } |
| 29 .comments { | 29 .comments { |
| 30 display: none; | 30 display: none; |
| 31 } | 31 } |
| 32 </style> | 32 </style> |
| 33 </head> | 33 </head> |
| 34 <body> | 34 <body> |
| 35 <div class="instructions" style="display:none"><p>Test passes if the two box
es below look exactly the same.</p></div> | 35 <div class="instructions"><p>Test passes if the two boxes below look exactly
the same.</p></div> |
| 36 <div class="comments"> | 36 <div class="comments"> |
| 37 Key to entities used below: | 37 Key to entities used below: |
| 38 א - The Hebrew letter Alef (strongly RTL). | 38 א - The Hebrew letter Alef (strongly RTL). |
| 39 ב - The Hebrew letter Bet (strongly RTL). | 39 ב - The Hebrew letter Bet (strongly RTL). |
| 40 ג - The Hebrew letter Gimel (strongly RTL). | 40 ג - The Hebrew letter Gimel (strongly RTL). |
| 41 This test makes sure that the direction is set correctly for an input whos
e value is set | 41 This test makes sure that the direction is set correctly for an input whos
e value is set |
| 42 dynamically by script. | 42 dynamically by script. |
| 43 </div> | 43 </div> |
| 44 <div id="test" class="test"> | 44 <div id="test" class="test"> |
| 45 <script> | 45 <script> |
| (...skipping 15 matching lines...) Expand all Loading... |
| 61 <div class="ref"> | 61 <div class="ref"> |
| 62 <div dir="ltr"> | 62 <div dir="ltr"> |
| 63 <input type="text" dir="ltr" value="ABCאבג." /> | 63 <input type="text" dir="ltr" value="ABCאבג." /> |
| 64 </div> | 64 </div> |
| 65 <div dir="rtl"> | 65 <div dir="rtl"> |
| 66 <input type="text" dir="ltr" value="ABCאבג." /> | 66 <input type="text" dir="ltr" value="ABCאבג." /> |
| 67 </div> | 67 </div> |
| 68 </div> | 68 </div> |
| 69 </body> | 69 </body> |
| 70 </html> | 70 </html> |
| OLD | NEW |