зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1618759 - Part 2. Support decimal and search value for inputmode. r=masayuki
Current WHATWG spec means that `numeric` is `IS_DIGITS` and `decimal` is `IS_NUMBER`. Depends on D68312 Differential Revision: https://phabricator.services.mozilla.com/D68313 --HG-- extra : moz-landing-system : lando
This commit is contained in:
Родитель
7045529ab7
Коммит
3b55303417
|
@ -706,9 +706,17 @@ void IMEHandler::AppendInputScopeFromInputmode(const nsAString& aInputmode,
|
|||
return;
|
||||
}
|
||||
if (aInputmode.EqualsLiteral("numeric")) {
|
||||
aScopes.AppendElement(IS_DIGITS);
|
||||
return;
|
||||
}
|
||||
if (aInputmode.EqualsLiteral("decimal")) {
|
||||
aScopes.AppendElement(IS_NUMBER);
|
||||
return;
|
||||
}
|
||||
if (aInputmode.EqualsLiteral("search")) {
|
||||
aScopes.AppendElement(IS_SEARCH);
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
// static
|
||||
|
|
Загрузка…
Ссылка в новой задаче