Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

/* Any copyright is dedicated to the Public Domain.
"use strict";
add_task(async function test_notice_in_aboutprefences() {
await setupPolicyEngineWithJson({
policies: {
DummyPolicy: true,
},
});
await BrowserTestUtils.withNewTab("about:preferences", async browser => {
ok(
!browser.contentDocument.getElementById("policies-container").hidden,
"The Policies notice was made visible in about:preferences"
);
});
});