blob: d06ef97fa66347e99c5e6c51f4b2e1a2c84cfa77 [file] [log] [blame]
Torne (Richard Coles)5c87bf82012-11-14 11:46:17 +00001<!DOCTYPE html>
2<html>
3<head>
4<META HTTP-EQUIV="CONTENT-TYPE" CONTENT="text/html; charset=UTF-8">
5<title>
6Test select non English element
7</title>
8</head>
9<body>
10See bug:<a href="https://bugs.webkit.org/show_bug.cgi?id=25899">25899</a>.
11<p>
12Choose the correct input method. Open the select element then type the first
13letter of one of the elements. The search prefix should be the first non English
14letter, not the value of the physical keyboard plus the native non English
15letter. For example, set the input method as Hebrew, hit keyboard 'c', the
16translated Hebrew character is 'ב'. The search prefix should be 'ב', not "cב".
17And the right element should be selected.
18<p>
19
20Hebrew Select:
21<select style="direction:rtl">
22 <option>אאא</option>
23 <option>בבב</option>
24 <option>גגג</option>
25 <option>דדדד מילה ערוכה מאוד, כדי שיהיה אפשר לראות יישור</option>
26</select>
27
28Russian Select:
29<select>
30 <option>фисв</option>
31 <option>уап</option>
32 <option>ршол</option>
33 <option>дьт</option>
34</select>
35</body>
36</html>