summaryrefslogtreecommitdiffstats
path: root/dom/inputmethod/mochitest/inputmethod_common.js
diff options
context:
space:
mode:
Diffstat (limited to 'dom/inputmethod/mochitest/inputmethod_common.js')
-rw-r--r--dom/inputmethod/mochitest/inputmethod_common.js24
1 files changed, 24 insertions, 0 deletions
diff --git a/dom/inputmethod/mochitest/inputmethod_common.js b/dom/inputmethod/mochitest/inputmethod_common.js
new file mode 100644
index 000000000..ad8103c9f
--- /dev/null
+++ b/dom/inputmethod/mochitest/inputmethod_common.js
@@ -0,0 +1,24 @@
+function inputmethod_setup(callback) {
+ SimpleTest.waitForExplicitFinish();
+ SimpleTest.requestCompleteLog();
+ let appInfo = SpecialPowers.Cc['@mozilla.org/xre/app-info;1']
+ .getService(SpecialPowers.Ci.nsIXULAppInfo);
+ if (appInfo.name != 'B2G') {
+ SpecialPowers.Cu.import("resource://gre/modules/Keyboard.jsm", this);
+ }
+
+ let prefs = [
+ ['dom.mozBrowserFramesEnabled', true],
+ ['network.disable.ipc.security', true],
+ // Enable navigator.mozInputMethod.
+ ['dom.mozInputMethod.enabled', true]
+ ];
+ SpecialPowers.pushPrefEnv({set: prefs}, function() {
+ SimpleTest.waitForFocus(callback);
+ });
+}
+
+function inputmethod_cleanup() {
+ SpecialPowers.wrap(navigator.mozInputMethod).setActive(false);
+ SimpleTest.finish();
+}