diff options
author | wolfbeast <mcwerewolf@wolfbeast.com> | 2019-07-14 22:41:01 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2019-07-14 22:41:01 +0200 |
commit | d9aff90f06254a0b724a0ea9c21db39f74ff8fc6 (patch) | |
tree | d4c4153819b192d23ed2bcbf6e99191a64d203a4 /modules | |
parent | 609ded8d47b19e91997baeadcacc5e7bf735a113 (diff) | |
download | uxp-d9aff90f06254a0b724a0ea9c21db39f74ff8fc6.tar.gz |
Add preference to allow the loading of FTP subresources for corner cases
Diffstat (limited to 'modules')
-rw-r--r-- | modules/libpref/init/all.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/libpref/init/all.js b/modules/libpref/init/all.js index f761c70b98..1aec5f393f 100644 --- a/modules/libpref/init/all.js +++ b/modules/libpref/init/all.js @@ -5440,6 +5440,9 @@ pref("layout.css.servo.enabled", true); // URL-Bar will not be blocked when flipping this pref. pref("security.data_uri.block_toplevel_data_uri_navigations", true); +// If true, all FTP subresource loads will be blocked. +pref("security.block_ftp_subresources", true); + // Disable Storage api in release builds. #ifdef NIGHTLY_BUILD pref("dom.storageManager.enabled", true); |