summaryrefslogtreecommitdiffstats
path: root/browser/components/preferences/tests/browser_layersacceleration.js
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 19:33:14 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 19:33:14 +0000
commit36d22d82aa202bb199967e9512281e9a53db42c9 (patch)
tree105e8c98ddea1c1e4784a60a5a6410fa416be2de /browser/components/preferences/tests/browser_layersacceleration.js
parentInitial commit. (diff)
downloadfirefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz
firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip
Adding upstream version 115.7.0esr.upstream/115.7.0esrupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'browser/components/preferences/tests/browser_layersacceleration.js')
-rw-r--r--browser/components/preferences/tests/browser_layersacceleration.js36
1 files changed, 36 insertions, 0 deletions
diff --git a/browser/components/preferences/tests/browser_layersacceleration.js b/browser/components/preferences/tests/browser_layersacceleration.js
new file mode 100644
index 0000000000..982a32c94d
--- /dev/null
+++ b/browser/components/preferences/tests/browser_layersacceleration.js
@@ -0,0 +1,36 @@
+add_task(async function () {
+ // We must temporarily disable `Once` StaticPrefs check for the duration of
+ // this test (see bug 1556131). We must do so in a separate operation as
+ // pushPrefEnv doesn't set the preferences in the order one could expect.
+ await SpecialPowers.pushPrefEnv({
+ set: [["preferences.force-disable.check.once.policy", true]],
+ });
+ await 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);
+});