Source code

Revision control

Copy as Markdown

Other Tools

Test Info: Warnings

// 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"));
});