diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
commit | 36d22d82aa202bb199967e9512281e9a53db42c9 (patch) | |
tree | 105e8c98ddea1c1e4784a60a5a6410fa416be2de /toolkit/components/extensions/test/xpcshell/test_resistfingerprinting_exempt.js | |
parent | Initial commit. (diff) | |
download | firefox-esr-upstream.tar.xz firefox-esr-upstream.zip |
Adding upstream version 115.7.0esr.upstream/115.7.0esrupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'toolkit/components/extensions/test/xpcshell/test_resistfingerprinting_exempt.js')
-rw-r--r-- | toolkit/components/extensions/test/xpcshell/test_resistfingerprinting_exempt.js | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/toolkit/components/extensions/test/xpcshell/test_resistfingerprinting_exempt.js b/toolkit/components/extensions/test/xpcshell/test_resistfingerprinting_exempt.js new file mode 100644 index 0000000000..6440a470bf --- /dev/null +++ b/toolkit/components/extensions/test/xpcshell/test_resistfingerprinting_exempt.js @@ -0,0 +1,40 @@ +/* -*- Mode: indent-tabs-mode: nil; js-indent-level: 2 -*- */ +/* vim: set sts=2 sw=2 et tw=80: */ +"use strict"; + +async function queryAppName() { + let extension = ExtensionTestUtils.loadExtension({ + background() { + browser.test.sendMessage("result", { appName: navigator.appName }); + }, + }); + await extension.startup(); + let result = await extension.awaitMessage("result"); + await extension.unload(); + return result.appName; +} + +const APPNAME_OVERRIDE = "MyTestAppName"; + +add_task( + { + pref_set: [["general.appname.override", APPNAME_OVERRIDE]], + }, + async function test_appName_normal() { + let appName = await queryAppName(); + Assert.equal(appName, APPNAME_OVERRIDE); + } +); + +add_task( + { + pref_set: [ + ["general.appname.override", APPNAME_OVERRIDE], + ["privacy.resistFingerprinting", true], + ], + }, + async function test_appName_resistFingerprinting() { + let appName = await queryAppName(); + Assert.equal(appName, APPNAME_OVERRIDE); + } +); |