summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/manual-tests/keyboard_select_non_english.html
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/manual-tests/keyboard_select_non_english.html')
-rw-r--r--Source/WebCore/manual-tests/keyboard_select_non_english.html36
1 files changed, 36 insertions, 0 deletions
diff --git a/Source/WebCore/manual-tests/keyboard_select_non_english.html b/Source/WebCore/manual-tests/keyboard_select_non_english.html
new file mode 100644
index 0000000..d06ef97
--- /dev/null
+++ b/Source/WebCore/manual-tests/keyboard_select_non_english.html
@@ -0,0 +1,36 @@
+<!DOCTYPE html>
+<html>
+<head>
+<META HTTP-EQUIV="CONTENT-TYPE" CONTENT="text/html; charset=UTF-8">
+<title>
+Test select non English element
+</title>
+</head>
+<body>
+See bug:<a href="https://bugs.webkit.org/show_bug.cgi?id=25899">25899</a>.
+<p>
+Choose the correct input method. Open the select element then type the first
+letter of one of the elements. The search prefix should be the first non English
+letter, not the value of the physical keyboard plus the native non English
+letter. For example, set the input method as Hebrew, hit keyboard 'c', the
+translated Hebrew character is 'ב'. The search prefix should be 'ב', not "cב".
+And the right element should be selected.
+<p>
+
+Hebrew Select:
+<select style="direction:rtl">
+ <option>אאא</option>
+ <option>בבב</option>
+ <option>גגג</option>
+ <option>דדדד מילה ערוכה מאוד, כדי שיהיה אפשר לראות יישור</option>
+</select>
+
+Russian Select:
+<select>
+ <option>фисв</option>
+ <option>уап</option>
+ <option>ршол</option>
+ <option>дьт</option>
+</select>
+</body>
+</html>