import from UXP: No issue - Explicitly indicate image/apng in Accept: header (055765d1)

This commit is contained in:
2025-05-14 14:44:42 +08:00
parent fde26a193c
commit 395bab66e7
+3 -3
View File
@@ -1581,14 +1581,14 @@ pref("network.http.accept.default", "*/*");
// 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,video/x-matroska,video/webm,*/*;q=0.8");
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/png,image/svg+xml,image/*;q=0.8,*/*;q=0.5");
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/png,image/svg+xml,image/*;q=0.8,*/*;q=0.5");
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");