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:
Makoto Kato 2020-04-07 22:30:24 +00:00
Родитель 7045529ab7
Коммит 3b55303417
1 изменённых файлов: 8 добавлений и 0 удалений

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

@ -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