☠☠ backed out by d04770626762 ☠ ☠ | |
author | Ehsan Akhgari <ehsan@mozilla.com> |
Tue, 07 May 2019 16:16:15 +0000 | |
changeset 472915 | 264bdfcb9ebb54017a4abc88b870def85e486de8 |
parent 472914 | 40dad5764be780d7f1cae6e79075923386bd82f5 |
child 472916 | 28fa627eb8e9b430526a1d8d302e0ccdaef22d73 |
push id | 35983 |
push user | ncsoregi@mozilla.com |
push date | Wed, 08 May 2019 03:38:51 +0000 |
treeherder | mozilla-central@0e9e744accd3 [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(); });