OLD | NEW |
| (Empty) |
1 <html> | |
2 <head> | |
3 <style> | |
4 select { width: 70px; } | |
5 </style> | |
6 </head> | |
7 <body> | |
8 <p> | |
9 Test for <i><a href="http://bugs.webkit.org/show_bug.cgi?id=13775">http:
//bugs.webkit.org/show_bug.cgi?id=13775</a> | |
10 REGRESSION: Popup button text should use "natural" directionality to mat
ch the items in the popup menu</i>. | |
11 </p> | |
12 <p> | |
13 In all of the popup buttons below, the letter A should be on the left an
d the letter א should be on the right. | |
14 </p> | |
15 <div style="direction: ltr;"> | |
16 <div style="text-align: left;"> | |
17 <select><option>אA</option></select> | |
18 <select><option>Aא</option></select> | |
19 <select><option>(אA</option></select> | |
20 <select><option>(Aא</option></select> | |
21 </div> | |
22 <div style="text-align: right;"> | |
23 <select><option>אA</option></select> | |
24 <select><option>Aא</option></select> | |
25 <select><option>(אA</option></select> | |
26 <select><option>(Aא</option></select> | |
27 </div> | |
28 </div> | |
29 <div style="direction: rtl;"> | |
30 <div style="text-align: left;"> | |
31 <select><option>אA</option></select> | |
32 <select><option>Aא</option></select> | |
33 <select><option>(אA</option></select> | |
34 <select><option>(Aא</option></select> | |
35 </div> | |
36 <div style="text-align: right;"> | |
37 <select><option>אA</option></select> | |
38 <select><option>Aא</option></select> | |
39 <select><option>(אA</option></select> | |
40 <select><option>(Aא</option></select> | |
41 </div> | |
42 </div> | |
43 </body> | |
44 </html> | |
OLD | NEW |