2010-10-20 10:39:44 -07:00
|
|
|
/* vim:set ts=2 sw=2 sts=2 et: */
|
2012-05-21 04:12:37 -07:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2010-10-20 10:39:44 -07:00
|
|
|
|
|
|
|
// Tests that code completion works properly.
|
|
|
|
|
|
|
|
function test() {
|
2012-09-26 10:07:57 -07:00
|
|
|
addTab("about:credits");
|
2012-05-25 03:28:47 -07:00
|
|
|
browser.addEventListener("load", function onLoad() {
|
|
|
|
browser.removeEventListener("load", onLoad, true);
|
|
|
|
openConsole(null, testChrome);
|
2012-05-10 08:01:37 -07:00
|
|
|
}, true);
|
2010-10-20 10:39:44 -07:00
|
|
|
}
|
|
|
|
|
2012-05-10 08:01:37 -07:00
|
|
|
function testChrome(hud) {
|
2010-10-20 10:39:44 -07:00
|
|
|
ok(hud, "we have a console");
|
2012-09-26 10:07:57 -07:00
|
|
|
|
2013-04-09 02:47:23 -07:00
|
|
|
ok(hud.iframeWindow, "we have the console UI window");
|
2011-07-07 04:06:06 -07:00
|
|
|
|
2010-10-20 10:39:44 -07:00
|
|
|
let jsterm = hud.jsterm;
|
|
|
|
ok(jsterm, "we have a jsterm");
|
|
|
|
|
|
|
|
let input = jsterm.inputNode;
|
2011-07-07 04:06:06 -07:00
|
|
|
ok(hud.outputNode, "we have an output node");
|
2010-10-20 10:39:44 -07:00
|
|
|
|
|
|
|
// Test typing 'docu'.
|
|
|
|
input.value = "docu";
|
|
|
|
input.setSelectionRange(4, 4);
|
2012-05-25 03:28:47 -07:00
|
|
|
jsterm.complete(jsterm.COMPLETE_HINT_ONLY, function() {
|
|
|
|
is(jsterm.completeNode.value, " ment", "'docu' completion");
|
|
|
|
executeSoon(finishTest);
|
|
|
|
});
|
2010-10-20 10:39:44 -07:00
|
|
|
}
|
|
|
|
|