summaryrefslogtreecommitdiffstats
path: root/dom/security/nsCSPUtils.cpp
diff options
context:
space:
mode:
authorMoonchild <mcwerewolf@gmail.com>2018-06-18 13:22:25 +0200
committerGitHub <noreply@github.com>2018-06-18 13:22:25 +0200
commit34302180b38e903c7c071b501cbc8be89efd56ec (patch)
treea64bc80cbee13acad97321f90a75c7bcd8bb7a62 /dom/security/nsCSPUtils.cpp
parent4ee1656d4a0721d31039508e0d0abc79e3f38c8d (diff)
parent22f7e8f8a74ee5ff83a0b76c789d011bd54244b9 (diff)
downloadUXP-34302180b38e903c7c071b501cbc8be89efd56ec.tar
UXP-34302180b38e903c7c071b501cbc8be89efd56ec.tar.gz
UXP-34302180b38e903c7c071b501cbc8be89efd56ec.tar.lz
UXP-34302180b38e903c7c071b501cbc8be89efd56ec.tar.xz
UXP-34302180b38e903c7c071b501cbc8be89efd56ec.zip
Merge pull request #509 from janekptacijarabaci/context-menu_save-link-as_principal_1
Added "nsIContentPolicy::TYPE_SAVEAS_DOWNLOAD": The context menu - "Save Link As" feature should use the loading principal instead of the system principal
Diffstat (limited to 'dom/security/nsCSPUtils.cpp')
-rw-r--r--dom/security/nsCSPUtils.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/dom/security/nsCSPUtils.cpp b/dom/security/nsCSPUtils.cpp
index 49832f8f4..71c8e3433 100644
--- a/dom/security/nsCSPUtils.cpp
+++ b/dom/security/nsCSPUtils.cpp
@@ -258,6 +258,9 @@ CSP_ContentTypeToDirective(nsContentPolicyType aType)
case nsIContentPolicy::TYPE_CSP_REPORT:
return nsIContentSecurityPolicy::NO_DIRECTIVE;
+ case nsIContentPolicy::TYPE_SAVEAS_DOWNLOAD:
+ return nsIContentSecurityPolicy::NO_DIRECTIVE;
+
// Fall through to error for all other directives
default:
MOZ_ASSERT(false, "Can not map nsContentPolicyType to CSPDirective");