blob: 859e539fb1141156abc4a14d6fa131785180316a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
add_task(async function() {
SpecialPowers.pushPrefEnv({ set: [["layout.spellcheckDefault", 2]] });
let prefs = await openPreferencesViaOpenPreferencesAPI("paneGeneral", {
leaveOpen: true,
});
is(prefs.selectedPane, "paneGeneral", "General pane was selected");
let doc = gBrowser.contentDocument;
let checkbox = doc.querySelector("#checkSpelling");
is(
checkbox.checked,
Services.prefs.getIntPref("layout.spellcheckDefault") == 2,
"checkbox should represent pref value before clicking on checkbox"
);
ok(
checkbox.checked,
"checkbox should be checked before clicking on checkbox"
);
checkbox.click();
is(
checkbox.checked,
Services.prefs.getIntPref("layout.spellcheckDefault") == 2,
"checkbox should represent pref value after clicking on checkbox"
);
ok(
!checkbox.checked,
"checkbox should not be checked after clicking on checkbox"
);
BrowserTestUtils.removeTab(gBrowser.selectedTab);
});
|