Bug 1310912 - Part 2. Add test. r=masayuki

We need skip this test on Android.  Although mochitest doesn't use native IME data, Android's GeckoEditable.java wants to access native IME composition.  See bug 1315898.

MozReview-Commit-ID: BNCKmDEmwKw

--HG--
extra : rebase_source : e7be1cb9e5c7c0fb4283f81541fc7441f52a1101
This commit is contained in:
Makoto Kato 2016-11-04 19:04:43 +09:00
Родитель 65c64fee1d
Коммит c962bbc74c
2 изменённых файлов: 93 добавлений и 0 удалений

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

@ -210,6 +210,8 @@ skip-if = toolkit == 'android'
[test_bug1248185.html]
[test_bug1258085.html]
[test_bug1268736.html]
[test_bug1310912.html]
skip-if = toolkit == 'android' # bug 1315898
[test_bug1315065.html]
[test_CF_HTML_clipboard.html]

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

@ -0,0 +1,91 @@
<!DOCTYPE html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=1310912
-->
<html>
<head>
<title>Test for Bug 1310912</title>
<script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
<script type="application/javascript" src="/tests/SimpleTest/EventUtils.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1310912">Mozilla Bug 1310912</a>
<p id="display"></p>
<div id="content" style="display: none;">
</div>
<div id="editable1" contenteditable="true">ABC</div>
<pre id="test">
<script class="testbody" type="application/javascript">
SimpleTest.waitForExplicitFinish();
SimpleTest.waitForFocus(function() {
let elm = document.getElementById("editable1");
elm.addEventListener("input", () => {
let range = window.getSelection().getRangeAt(0);
range.insertNode(document.createTextNode(""));
});
elm.focus();
let sel = window.getSelection();
sel.collapse(elm.childNodes[0], elm.textContent.length);
synthesizeCompositionChange({
composition: {
string: "DEF",
clauses: [
{ length: 3, attr: COMPOSITION_ATTR_RAW_CLAUSE }
]
},
caret: { start: 3, length: 0 }
});
ok(elm.textContent == "ABCDEF", "composing text should be set");
synthesizeCompositionChange({
composition: {
string: "GHI",
clauses: [
{ length: 3, attr: COMPOSITION_ATTR_CONVERTED_CLAUSE }
]
},
caret: { start: 0, length: 0 }
});
ok(elm.textContent == "ABCGHI", "composing text should be replaced");
synthesizeCompositionChange({
composition: {
string: "JKL",
clauses: [
{ length: 3, attr: COMPOSITION_ATTR_CONVERTED_CLAUSE }
]
},
caret: { start: 0, length: 0 }
});
ok(elm.textContent == "ABCJKL", "composing text should be replaced");
synthesizeCompositionChange({
composition: {
string: "MNO",
clauses: [
{ length: 3, attr: COMPOSITION_ATTR_CONVERTED_CLAUSE }
]
},
caret: { start: 1, length: 0 }
});
ok(elm.textContent == "ABCMNO", "composing text should be replaced");
synthesizeComposition({ type: "compositioncommitasis" });
ok(elm.textContent == "ABCMNO", "composing text should be committed");
synthesizeKey("Z", { accelKey: true });
ok(elm.textContent == "ABC", "text should be undoed");
SimpleTest.finish();
});
</script>
</pre>
</body>
</html>