diff options
author | wolfbeast <mcwerewolf@wolfbeast.com> | 2019-03-07 12:45:54 +0100 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2019-03-07 12:45:54 +0100 |
commit | 982e255dba31a0ceb46b256d36e73ef2a4cfe6ff (patch) | |
tree | e7b7b0f0604856a7fb9fed588dd2ba8be7da61b9 /modules/libpref | |
parent | 2b4c63441ab255a3c88531c8a6cbe7687bdd9c15 (diff) | |
download | uxp-982e255dba31a0ceb46b256d36e73ef2a4cfe6ff.tar.gz |
Part 1: network component changes.
Diffstat (limited to 'modules/libpref')
-rw-r--r-- | modules/libpref/init/all.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/modules/libpref/init/all.js b/modules/libpref/init/all.js index 3666ca4254..4111ca8a92 100644 --- a/modules/libpref/init/all.js +++ b/modules/libpref/init/all.js @@ -1474,7 +1474,10 @@ pref("network.http.request.max-start-delay", 10); pref("network.http.request.max-attempts", 10); // Headers -pref("network.http.accept.default", "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8"); +pref("network.http.accept.default", "*/*"); +pref("network.http.accept.navigation", "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8"); +pref("network.http.accept.image", "image/png,image/svg+xml,image/*;q=0.8,*/*;q=0.5"); +pref("network.http.accept.style", "text/css,*/*;q=0.1"); // Prefs allowing granular control of referers // 0=don't send any, 1=send only on clicks, 2=send on image requests as well |