author | Ehsan Akhgari <ehsan@mozilla.com> |
Tue, 07 May 2019 17:48:58 +0000 | |
changeset 534817 | 4bbf8907a6d8c2b7b689f83b55c5ccd892f19cfc |
parent 534816 | 61543755b7817db42723307f6bcfcdb7fba9ff0c |
child 534818 | eb8757f9586fbdbeef944c4dcfa55e505b739f4a |
push id | 2082 |
push user | ffxbld-merge |
push date | Mon, 01 Jul 2019 08:34:18 +0000 |
treeherder | mozilla-release@2fb19d0466d2 [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | ewright |
bugs | 1531920 |
milestone | 68.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
browser/components/preferences/in-content/tests/browser_contentblocking.js | file | annotate | diff | comparison | revisions |
--- a/browser/components/preferences/in-content/tests/browser_contentblocking.js +++ b/browser/components/preferences/in-content/tests/browser_contentblocking.js @@ -461,16 +461,22 @@ add_task(async function testPolicyCatego let standardRadioOption = doc.getElementById("standardRadio"); is(strictRadioOption.disabled, true, "the strict option is disabled"); is(standardRadioOption.disabled, true, "the standard option is disabled"); gBrowser.removeCurrentTab(); // Cleanup after this particular test. if (Services.policies.status != Ci.nsIEnterprisePolicies.INACTIVE) { + await EnterprisePolicyTesting.setupPolicyEngineWithJson({ + policies: {"Cookies": { + "Locked": false, + }, + }, + }); await EnterprisePolicyTesting.setupPolicyEngineWithJson(""); } is(Services.policies.status, Ci.nsIEnterprisePolicies.INACTIVE, "Engine is inactive at the end of the test"); EnterprisePolicyTesting.resetRunOnceState(); PoliciesPrefTracker.stop(); });