mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-08 08:48:39 +09:00
Merge remote-tracking branch 'origin/tracking' into custom
This commit is contained in:
commit
1b648cc1d8
6 changed files with 47 additions and 3 deletions
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue