Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test runs only with pattern: os == 'linux'
- Manifest: toolkit/xre/test/browser.toml
// Any copyright is dedicated to the Public Domain.
add_task(async function test_pref_is_true() {
Assert.equal(true, Services.prefs.getBoolPref("widget.support-xdg-config"));
});
add_task(async function test_pref_is_locked() {
Services.prefs.setBoolPref("widget.support-xdg-config", false);
Assert.equal(true, Services.prefs.getBoolPref("widget.support-xdg-config"));
});