1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 2 <html xmlns="http://www.w3.org/1999/xhtml" > 3 <head> 4 <title>Test drop-down item's alignment in <select>/<option></title> 5 <META HTTP-EQUIV="CONTENT-TYPE" CONTENT="text/html; charset=UTF-8"> 6 </head> 7 <body> 8 <p> 9 select drop-down items' alignment should be determined by the directionality of 10 <select> tag. 11 <p> 12 The drop-down items in the following <select> should be left-aligned. 13 <br> 14 <select> 15 <option>abc def</option> 16 <option> </option> 17 <option dir="rtl">abc def</option> 18 <option dir="ltr"> abc </option> 19 <option dir="rtl">hi!</option> 20 <option dir="ltr">hi!</option> 21 </select> 22 <br> 23 The drop-down items in the second <select> should be right-aligned. 24 <p> 25 <select dir="rtl"> 26 <option>abc def</option> 27 <option> </option> 28 <option dir="rtl">abc def</option> 29 <option dir="ltr"> abc </option> 30 <option dir="rtl">hi!</option> 31 <option dir="ltr">hi!</option> 32 </select> 33 </body> 34 </html> 35