1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-20 02:38:00 +01:00

Fix tab number updates in FF36. Closes issue 300.

This commit is contained in:
Kris Maglione
2011-01-26 16:22:29 -05:00
parent a6fe97b787
commit 218562e21b
48 changed files with 498 additions and 8666 deletions

View File

@@ -1,62 +0,0 @@
var jumlib = {}; Components.utils.import("resource://mozmill/modules/jum.js", jumlib);
var dactyllib = require("dactyl");
var setupModule = function (module) {
controller = mozmill.getBrowserController();
dactyl = new dactyllib.Controller(controller);
};
var setupTest = function (test) {
dactyl.runViCommand([["VK_ESCAPE"]]);
};
const HELP_FILES = ["all", "tutorial", "intro", "starting", "browsing",
"buffer", "cmdline", "insert", "options", "pattern", "tabs", "hints",
"map", "eval", "marks", "repeat", "autocommands", "print", "gui",
"styling", "message", "developer", "various", "faq", "index", "plugins"];
var testViHelpCommand_OpensIntroHelpPage = function () {
assertHelpOpensPageWithTag({
HELP_COMMAND: function () { dactyl.runViCommand([["VK_F1"]]); },
EXPECTED_HELP_TAG: "intro.xml"
});
};
var testViHelpAllCommand_OpensAllHelpPage = function () {
assertHelpOpensPageWithTag({
HELP_COMMAND: function () { dactyl.runViCommand([["VK_F1", { altKey: true }]]); },
EXPECTED_HELP_TAG: "all.xml"
});
};
var testExHelpCommand_NoArgs_OpensIntroHelpPage = function () {
assertHelpOpensPageWithTag({
HELP_COMMAND: function () { dactyl.runExCommand("help"); },
EXPECTED_HELP_TAG: "intro.xml"
});
};
var testExHelpAllCommand_NoArgs_OpensAllHelpPage = function () {
assertHelpOpensPageWithTag({
HELP_COMMAND: function () { dactyl.runExCommand("helpall"); },
EXPECTED_HELP_TAG: "all.xml"
});
};
var testExHelpCommand_PageTagArg_OpensHelpPageContainingTag = function () {
for (let [, file] in Iterator(HELP_FILES)) {
let tag = file + ".xml";
assertHelpOpensPageWithTag({
HELP_COMMAND: function () { dactyl.runExCommand("help " + tag); },
EXPECTED_HELP_TAG: tag
});
}
};
function assertHelpOpensPageWithTag({ HELP_COMMAND, EXPECTED_HELP_TAG }) {
HELP_COMMAND();
controller.waitForPageLoad(controller.tabs.activeTab);
controller.assertNode(new elementslib.ID(controller.tabs.activeTab, EXPECTED_HELP_TAG));
}
// vim: sw=4 ts=8 et: