Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / ManualTests / keyboard_select_non_english.html
blobd06ef97fa66347e99c5e6c51f4b2e1a2c84cfa77
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>
20 Hebrew Select:
21 <select style="direction:rtl">
22 <option>אאא</option>
23 <option>בבב</option>
24 <option>גגג</option>
25 <option>דדדד מילה ערוכה מאוד, כדי שיהיה אפשר לראות יישור</option>
26 </select>
28 Russian Select:
29 <select>
30 <option>фисв</option>
31 <option>уап</option>
32 <option>ршол</option>
33 <option>дьт</option>
34 </select>
35 </body>
36 </html>