82 lines
2.2 KiB
JavaScript
82 lines
2.2 KiB
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
* http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
async function launchPreferences() {
|
|
let prefs = await openPreferencesViaOpenPreferencesAPI("paneGeneral", {
|
|
leaveOpen: true,
|
|
});
|
|
Assert.equal(prefs.selectedPane, "paneGeneral", "General pane was selected");
|
|
}
|
|
|
|
add_task(async function () {
|
|
await launchPreferences();
|
|
let checkbox = gBrowser.contentDocument.querySelector(
|
|
"#useFullKeyboardNavigation"
|
|
);
|
|
Assert.equal(
|
|
Services.prefs.getIntPref("accessibility.tabfocus"),
|
|
7,
|
|
"default should be full keyboard access"
|
|
);
|
|
Assert.ok(
|
|
checkbox.checked,
|
|
"checkbox should be checked before clicking on checkbox"
|
|
);
|
|
|
|
checkbox.click();
|
|
|
|
Assert.equal(
|
|
Services.prefs.getIntPref("accessibility.tabfocus"),
|
|
1,
|
|
"Prefstore should reflect checkbox's associated numeric value"
|
|
);
|
|
Assert.ok(
|
|
!checkbox.checked,
|
|
"checkbox should be unchecked after clicking on checkbox"
|
|
);
|
|
|
|
checkbox.click();
|
|
|
|
Assert.ok(
|
|
checkbox.checked,
|
|
"checkbox should be checked after clicking on checkbox"
|
|
);
|
|
Assert.equal(
|
|
Services.prefs.getIntPref("accessibility.tabfocus"),
|
|
7,
|
|
"Should restore default value"
|
|
);
|
|
|
|
BrowserTestUtils.removeTab(gBrowser.selectedTab);
|
|
await SpecialPowers.pushPrefEnv({ set: [["accessibility.tabfocus", 4]] });
|
|
await launchPreferences();
|
|
checkbox = gBrowser.contentDocument.querySelector(
|
|
"#useFullKeyboardNavigation"
|
|
);
|
|
|
|
Assert.ok(
|
|
!checkbox.checked,
|
|
"checkbox should stay unchecked after setting non-7 pref value"
|
|
);
|
|
Assert.equal(
|
|
Services.prefs.getIntPref("accessibility.tabfocus"),
|
|
4,
|
|
"pref should have value in store"
|
|
);
|
|
|
|
BrowserTestUtils.removeTab(gBrowser.selectedTab);
|
|
await SpecialPowers.pushPrefEnv({ set: [["accessibility.tabfocus", 7]] });
|
|
await launchPreferences();
|
|
checkbox = gBrowser.contentDocument.querySelector(
|
|
"#useFullKeyboardNavigation"
|
|
);
|
|
|
|
Assert.equal(
|
|
Services.prefs.getIntPref("accessibility.tabfocus"),
|
|
7,
|
|
"Pref value should update after modification"
|
|
);
|
|
Assert.ok(checkbox.checked, "checkbox should be checked");
|
|
|
|
BrowserTestUtils.removeTab(gBrowser.selectedTab);
|
|
});
|