Bug 1209465 - Add test for committing ideographic space; r=esawin

This commit is contained in:
Jim Chen 2015-10-27 14:22:05 -04:00
Родитель 2e683ca304
Коммит bc187d1621
1 изменённых файлов: 7 добавлений и 0 удалений

Просмотреть файл

@ -109,6 +109,13 @@ public class testInputConnection extends UITest {
ic.deleteSurroundingText(3, 0);
assertTextAndSelectionAt("Can clear text", ic, "", 0);
// Bug 1209465, cannot enter ideographic space character by itself (U+3000).
ic.commitText("\u3000", 1);
assertTextAndSelectionAt("Can commit ideographic space", ic, "\u3000", 1);
ic.deleteSurroundingText(1, 0);
assertTextAndSelectionAt("Can clear text", ic, "", 0);
}
}
}