Bug 1630645 - Add more inputmode tests for widget. r=masayuki

`inputmode` DOM API are in WPT, but I should add more tests for widget.

Differential Revision: https://phabricator.services.mozilla.com/D71248
This commit is contained in:
Makoto Kato 2020-04-17 02:35:56 +00:00
Родитель d265f352ce
Коммит fa2567e7c8
4 изменённых файлов: 118 добавлений и 0 удалений

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

@ -1690,6 +1690,16 @@ nsDOMWindowUtils::GetFocusedActionHint(nsAString& aType) {
return NS_OK;
}
NS_IMETHODIMP
nsDOMWindowUtils::GetFocusedInputMode(nsAString& aInputMode) {
nsCOMPtr<nsIWidget> widget = GetWidget();
if (!widget) {
return NS_ERROR_FAILURE;
}
aInputMode = widget->GetInputContext().mHTMLInputInputmode;
return NS_OK;
}
NS_IMETHODIMP
nsDOMWindowUtils::GetViewId(Element* aElement, nsViewID* aResult) {
if (aElement && nsLayoutUtils::FindIDFor(aElement, aResult)) {

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

@ -496,6 +496,7 @@ tags = openwindow
[test_iframe_sandbox_workers.html]
[test_img_attributes_reflection.html]
[test_imageSrcSet.html]
[test_inputmode.html]
[test_li_attributes_reflection.html]
[test_link_attributes_reflection.html]
[test_link_sizes.html]

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

@ -0,0 +1,102 @@
<!DOCTYPE html>
<html>
<head>
<title>Tests for inputmode attribute</title>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<script src="/tests/SimpleTest/SpecialPowers.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
</head>
<body>
<p id="display"></p>
<div id="content" style="display: none"></div>
<div>
<input id="a1" inputmode="none">
<input id="a2" inputmode="text">
<input id="a3" inputmode="tel">
<input id="a4" inputmode="url">
<input id="a5" inputmode="email">
<input id="a6" inputmode="numeric">
<input id="a7" inputmode="decimal">
<input id="a8" inputmode="search">
<input id="a9">
<textarea id="b1" inputmode="none"></textarea>
<textarea id="b2" inputmode="text"></textarea>
<textarea id="b3" inputmode="tel"></textarea>
<textarea id="b4" inputmode="url"></textarea>
<textarea id="b5" inputmode="email"></textarea>
<textarea id="b6" inputmode="numeric"></textarea>
<textarea id="b7" inputmode="decimal"></textarea>
<textarea id="b8" inputmode="search"></textarea>
<textarea id="b9"></textarea>
<div contenteditable id="c1" inputmode="none"><span>c1</span></div>
<div contenteditable id="c2" inputmode="text"><span>c2</span></div>
<div contenteditable id="c3" inputmode="tel"><span>c3</span></div>
<div contenteditable id="c4" inputmode="url"><span>c4</span></div>
<div contenteditable id="c5" inputmode="email"><span>c5</span></div>
<div contenteditable id="c6" inputmode="numeric"><span>c6</span></div>
<div contenteditable id="c7" inputmode="decimal"><span>c7</span></div>
<div contenteditable id="c8" inputmode="search"><span>c8</span></div>
<div contenteditable id="c9"><span>c9</span></div>
<input id="d1" inputmode="URL"> <!-- no lowercase -->
</div>
<pre id="test">
<script class=testbody" type="application/javascript">
SimpleTest.waitForExplicitFinish();
SimpleTest.waitForFocus(() => {
SpecialPowers.setBoolPref("dom.forms.inputmode", true);
const tests = [
{ id: "a1", inputmode: "none", desc: "inputmode of input element is none" },
{ id: "a2", inputmode: "text", desc: "inputmode of input element is text" },
{ id: "a3", inputmode: "tel", desc: "inputmode of input element is tel" },
{ id: "a4", inputmode: "url", desc: "inputmode of input element is url" },
{ id: "a5", inputmode: "email", desc: "inputmode of input element is email" },
{ id: "a6", inputmode: "numeric", desc: "inputmode of input element is numeric" },
{ id: "a7", inputmode: "decimal", desc: "inputmode of input element is decimal" },
{ id: "a8", inputmode: "search", desc: "inputmode of input element is search" },
{ id: "a9", inputmode: "", desc: "no inputmode of input element" },
{ id: "b1", inputmode: "none", desc: "inputmode of textarea element is none" },
{ id: "b2", inputmode: "text", desc: "inputmode of textarea element is text" },
{ id: "b3", inputmode: "tel", desc: "inputmode of textarea element is tel" },
{ id: "b4", inputmode: "url", desc: "inputmode of textarea element is url" },
{ id: "b5", inputmode: "email", desc: "inputmode of textarea element is email" },
{ id: "b6", inputmode: "numeric", desc: "inputmode of textarea element is numeric" },
{ id: "b7", inputmode: "decimal", desc: "inputmode of textarea element is decimal" },
{ id: "b8", inputmode: "search", desc: "inputmode of textarea element is search" },
{ id: "b9", inputmode: "", desc: "no inputmode of textarea element" },
{ id: "c1", inputmode: "none", desc: "inputmode of contenteditable is none" },
{ id: "c2", inputmode: "text", desc: "inputmode of contenteditable is text" },
{ id: "c3", inputmode: "tel", desc: "inputmode of contentedtiable is tel" },
{ id: "c4", inputmode: "url", desc: "inputmode of contentedtiable is url" },
{ id: "c5", inputmode: "email", desc: "inputmode of contentedtable is email" },
{ id: "c6", inputmode: "numeric", desc: "inputmode of contenteditable is numeric" },
{ id: "c7", inputmode: "decimal", desc: "inputmode of contenteditable is decimal" },
{ id: "c8", inputmode: "search", desc: "inputmode of contenteditable is search" },
{ id: "c9", inputmode: "", desc: "no inputmode of contentedtiable" },
{ id: "d1", inputmode: "url", desc: "inputmode of input element is URL" },
];
for (let test of tests) {
let element = document.getElementById(test.id);
if (element.tagName == "DIV") {
// Set caret to text node in contenteditable
window.getSelection().removeAllRanges();
let range = document.createRange();
range.setStart(element.firstChild.firstChild, 1);
range.setEnd(element.firstChild.firstChild, 1);
window.getSelection().addRange(range);
} else {
// input and textarea element
element.focus();
}
is(SpecialPowers.DOMWindowUtils.focusedInputMode, test.inputmode, test.desc);
}
SpecialPowers.clearUserPref("dom.forms.inputmode");
SimpleTest.finish();
});
</script>
</pre>
</body>
</html>

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

@ -1506,6 +1506,11 @@ interface nsIDOMWindowUtils : nsISupports {
*/
readonly attribute AString focusedActionHint;
/**
* Get the inputmode of the currently focused editing host, if any.
*/
readonly attribute AString focusedInputMode;
/**
* Find the view ID for a given element. This is the reverse of
* findElementWithViewId().