Bug 1828973: Disable OCSP for web-platform tests r=jgraham

Differential Revision: https://phabricator.services.mozilla.com/D175936
This commit is contained in:
Randell Jesup 2023-04-19 18:24:44 +00:00
parent 9604366386
commit 9566ea5dd5
2 changed files with 3 additions and 1 deletions

View File

@ -81,3 +81,5 @@ user_pref("layout.css.font-loading-api.workers.enabled", true);
user_pref("remote.experimental.enabled", true);
// Disable always partitioning storage with the Storage Access API
user_pref("privacy.partition.always_partition_third_party_non_cookie_storage", false);
// Disable OCSP checks in WPT (webtransport triggers these occasionally)
user_pref("security.OCSP.enabled", 0);

View File

@ -1,4 +1,4 @@
prefs: [network.webtransport.enabled:true, network.webtransport.datagrams.enabled:true, security.OCSP.enabled:0]
prefs: [network.webtransport.enabled:true, network.webtransport.datagrams.enabled:true]
# OCSP is disabled for this directory because we get errors from attempts to access the internet with it on
disabled:
if os == "android": 1823759