OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <body> | 2 <body> |
3 <style> | 3 <style> |
4 select { | 4 select { |
5 margin: 4px; | 5 margin: 4px; |
6 } | 6 } |
7 .wrapper { | 7 .wrapper { |
8 background: #dbb102; | 8 background: #dbb102; |
9 padding: 8px; | 9 padding: 8px; |
10 display: inline-block; | 10 display: inline-block; |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
108 <script type="text/javascript"> | 108 <script type="text/javascript"> |
109 for (var i = 0; i < 1234; ++i) { | 109 for (var i = 0; i < 1234; ++i) { |
110 document.writeln(" <option selected='selected'>Item " + (i + 1) + "</option
>"); | 110 document.writeln(" <option selected='selected'>Item " + (i + 1) + "</option
>"); |
111 } | 111 } |
112 </script> | 112 </script> |
113 </select> | 113 </select> |
114 <br> | 114 <br> |
115 | 115 |
116 <!-- drop down arrow overlap test --> | 116 <!-- drop down arrow overlap test --> |
117 <select style="width:60px"><option>Month</option></select> | 117 <select style="width:60px"><option>Month</option></select> |
| 118 <br> |
| 119 <!-- Test RTL menulist without and with border --> |
| 120 <select style="direction:rtl;"><option>foo</option></select> |
| 121 <select style="border: 3px solid lime; direction:rtl;"><option>foo</option></sel
ect> |
| 122 <select style="border: 8px solid lime; direction:rtl;"><option>foo</option></sel
ect> |
| 123 <select style="border-radius: 6px; direction:rtl;"><option>foo</option></select> |
| 124 <br> |
118 | 125 |
119 </body> | 126 </body> |
OLD | NEW |