Bug 1248408 - Preserve text from previous a11y event if new event does not provide any. r=mfinkle

MozReview-Commit-ID: 3hIquiKLvl7

--HG--
extra : rebase_source : 46db647654a5dcb9d2388e6856c7cb9bef1c25b4
This commit is contained in:
Eitan Isaacson 2016-03-31 13:46:14 -07:00
Родитель 09d61ae31a
Коммит a4d8daf715
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -208,8 +208,8 @@ public class GeckoAccessibility {
for (int i = 1; i < textArray.length(); i++) {
sb.append(" ").append(textArray.optString(i));
}
sVirtualCursorNode.setText(sb.toString());
}
sVirtualCursorNode.setText(sb.toString());
sVirtualCursorNode.setContentDescription(message.optString("description"));
JSONObject bounds = message.optJSONObject("bounds");