Home | History | Annotate | Download | only in ManualTests
      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <META HTTP-EQUIV="CONTENT-TYPE" CONTENT="text/html; charset=UTF-8">
      5 <title>
      6 Test select non English element
      7 </title>
      8 </head>
      9 <body>
     10 See bug:<a href="https://bugs.webkit.org/show_bug.cgi?id=25899">25899</a>.
     11 <p>
     12 Choose the correct input method. Open the select element then type the first 
     13 letter of one of the elements. The search prefix should be the first non English
     14 letter, not the value of the physical keyboard plus the native non English
     15 letter. For example, set the input method as Hebrew, hit keyboard 'c', the
     16 translated Hebrew character is ''. The search prefix should be '', not "c".
     17 And the right element should be selected.
     18 <p>
     19 
     20 Hebrew Select:
     21 <select style="direction:rtl">
     22   <option></option>
     23   <option></option>
     24   <option></option>
     25   <option>   ,     </option>
     26 </select>
     27 
     28 Russian Select: 
     29 <select>
     30   <option></option>
     31   <option></option>
     32   <option></option>
     33   <option></option>
     34 </select>
     35 </body>
     36 </html>
     37