Merge remote-tracking branch 'origin/tracking' into custom

This commit is contained in:
roytam1 2024-09-13 10:04:42 +08:00
commit 1b648cc1d8
6 changed files with 47 additions and 3 deletions

View file

@ -1221,6 +1221,12 @@ pref("dom.cycle_collector.incremental", false);
pref("content.sink.pending_event_mode", 0);
#endif
// Is support for CORS enabled?
pref("content.cors.disable", false);
// Should preflight requests be bypassed when CORS is disabled?
pref("content.cors.bypass_preflight_request", false);
// Disable popups from plugins by default
// 0 = openAllowed
// 1 = openControlled
@ -1337,6 +1343,9 @@ pref("javascript.options.streams", true);
pref("advanced.mailftp", false);
pref("image.animation_mode", "normal");
// Same-origin policy for all URIs.
pref("security.same_origin_policy.enabled", true);
// Same-origin policy for file URIs, "false" is traditional
pref("security.fileuri.strict_origin_policy", true);