mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-05 07:18:39 +09:00
Merge remote-tracking branch 'origin/tracking' into custom
This commit is contained in:
commit
e72f8a3a81
140 changed files with 1117 additions and 466 deletions
|
|
@ -25,7 +25,7 @@ pref("general.useragent.locale", "chrome://global/locale/intl.properties");
|
|||
// Platform User-agent compatibility mode default settings
|
||||
pref("general.useragent.compatMode.gecko", false);
|
||||
pref("general.useragent.compatMode.firefox", false);
|
||||
pref("general.useragent.compatMode.version", "115.0");
|
||||
pref("general.useragent.compatMode.version", "128.0");
|
||||
pref("general.useragent.appVersionIsBuildID", false);
|
||||
pref("general.useragent.change_platform_version", true);
|
||||
pref("general.useragent.platform_version", "6.7");
|
||||
|
|
@ -807,7 +807,6 @@ pref("gfx.canvas.skiagl.dynamic-cache", true);
|
|||
pref("gfx.text.disable-aa", false);
|
||||
|
||||
pref("gfx.work-around-driver-bugs", true);
|
||||
pref("gfx.prefer-mesa-llvmpipe", false);
|
||||
|
||||
pref("gfx.draw-color-bars", false);
|
||||
|
||||
|
|
@ -1504,8 +1503,18 @@ pref("network.http.request.max-attempts", 10);
|
|||
|
||||
// Headers
|
||||
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");
|
||||
// Top-level navigation should include all non-ubiquitous mime types in front of */*
|
||||
// including image and video/audio types that are handled top-level.
|
||||
#ifdef MOZ_JXL
|
||||
pref("network.http.accept.navigation", "text/html,application/xhtml+xml,application/xml;q=0.9,image/jxl,image/webp,image/apng,video/x-matroska,video/webm,*/*;q=0.8");
|
||||
#else
|
||||
pref("network.http.accept.navigation", "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,video/x-matroska,video/webm,*/*;q=0.8");
|
||||
#endif
|
||||
#ifdef MOZ_JXL
|
||||
pref("network.http.accept.image", "image/jxl,image/webp,image/apng,image/png,image/svg+xml,image/*;q=0.8,*/*;q=0.5");
|
||||
#else
|
||||
pref("network.http.accept.image", "image/webp,image/apng,image/png,image/svg+xml,image/*;q=0.8,*/*;q=0.5");
|
||||
#endif
|
||||
pref("network.http.accept.style", "text/css,*/*;q=0.1");
|
||||
|
||||
// Prefs allowing granular control of referers
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue