forked from mirrors/gecko-dev
Automatic changes by ESLint, except for manual corrections for .xml files. Differential Revision: https://phabricator.services.mozilla.com/D4439 --HG-- extra : moz-landing-system : lando
22 lines
830 B
JavaScript
22 lines
830 B
JavaScript
add_task(async function() {
|
|
SpecialPowers.pushPrefEnv({set: [
|
|
["gfx.direct2d.disabled", false],
|
|
["layers.acceleration.disabled", false],
|
|
]});
|
|
|
|
let prefs = await openPreferencesViaOpenPreferencesAPI("paneGeneral", {leaveOpen: true});
|
|
is(prefs.selectedPane, "paneGeneral", "General pane was selected");
|
|
|
|
let doc = gBrowser.contentDocument;
|
|
let checkbox = doc.querySelector("#allowHWAccel");
|
|
is(!checkbox.checked,
|
|
Services.prefs.getBoolPref("layers.acceleration.disabled"),
|
|
"checkbox should represent inverted pref value before clicking on checkbox");
|
|
|
|
checkbox.click();
|
|
|
|
is(!checkbox.checked,
|
|
Services.prefs.getBoolPref("layers.acceleration.disabled"),
|
|
"checkbox should represent inverted pref value after clicking on checkbox");
|
|
BrowserTestUtils.removeTab(gBrowser.selectedTab);
|
|
});
|