mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 00:25:27 +00:00
68 lines
1.6 KiB
HTML
68 lines
1.6 KiB
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<!--
|
|
https://bugzilla.mozilla.org/show_bug.cgi?id=952080
|
|
-->
|
|
<head>
|
|
<title>SendKey with canceled keydown test for InputMethod API.</title>
|
|
<script type="application/javascript;version=1.7" src="/tests/SimpleTest/SimpleTest.js"></script>
|
|
<script type="application/javascript;version=1.7" src="inputmethod_common.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=952080">Mozilla Bug 952080</a>
|
|
<p id="display"></p>
|
|
<pre id="test">
|
|
<script class="testbody" type="application/javascript;version=1.7">
|
|
|
|
// The input context.
|
|
var gContext = null;
|
|
|
|
inputmethod_setup(function() {
|
|
runTest();
|
|
});
|
|
|
|
function runTest() {
|
|
let im = navigator.mozInputMethod;
|
|
|
|
im.oninputcontextchange = function() {
|
|
ok(true, 'inputcontextchange event was fired.');
|
|
im.oninputcontextchange = null;
|
|
|
|
gContext = im.inputcontext;
|
|
if (!gContext) {
|
|
ok(false, 'Should have a non-null inputcontext.');
|
|
inputmethod_cleanup();
|
|
return;
|
|
}
|
|
|
|
test();
|
|
};
|
|
|
|
// Set current page as an input method.
|
|
SpecialPowers.wrap(im).setActive(true);
|
|
|
|
let iframe = document.createElement('iframe');
|
|
iframe.src = 'file_test_sendkey_cancel.html';
|
|
iframe.setAttribute('mozbrowser', true);
|
|
document.body.appendChild(iframe);
|
|
}
|
|
|
|
function test() {
|
|
gContext.sendKey(0, 'j', 0).then(function() {
|
|
ok(false, 'sendKey was incorrectly resolved');
|
|
|
|
inputmethod_cleanup();
|
|
}, function(e) {
|
|
ok(true, 'sendKey was rejected');
|
|
|
|
inputmethod_cleanup();
|
|
});
|
|
}
|
|
|
|
</script>
|
|
</pre>
|
|
</body>
|
|
</html>
|
|
|