diff options
author | Jan Beich <jbeich@FreeBSD.org> | 2018-05-11 19:44:46 +0000 |
---|---|---|
committer | Jan Beich <jbeich@FreeBSD.org> | 2018-05-11 19:44:46 +0000 |
commit | 08f384fd06a468247b6a87830595465b915a32e5 (patch) | |
tree | 6dbe239b26f5c9a865646ddfb8d592fde958c99c /www/waterfox/files/patch-bug1436482 | |
parent | New port: security/py-winrm (diff) |
www/waterfox: update to 56.1.0.89
Changes: https://github.com/MrAlex94/Waterfox/compare/56.1.0...2bb1a86e5dbd6
Diffstat (limited to 'www/waterfox/files/patch-bug1436482')
-rw-r--r-- | www/waterfox/files/patch-bug1436482 | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/www/waterfox/files/patch-bug1436482 b/www/waterfox/files/patch-bug1436482 deleted file mode 100644 index 3a9881eeed4f..000000000000 --- a/www/waterfox/files/patch-bug1436482 +++ /dev/null @@ -1,28 +0,0 @@ -commit fb1d12efaddd -Author: Kris Maglione <maglione.k@gmail.com> -Date: Wed Apr 4 17:01:59 2018 -0700 - - Bug 1436482 - Always use the principal URI as the principal URI. r=mixedpuppy, a=jcristau - - MozReview-Commit-ID: 7oePANQBCxK - - --HG-- - extra : source : 07ab807639ee42a407a9bdb0d374206c0f17678d ---- - toolkit/components/extensions/WebExtensionPolicy.cpp | 3 +-- - 1 file changed, 1 insertion(+), 2 deletions(-) - -diff --git toolkit/components/extensions/WebExtensionPolicy.cpp toolkit/components/extensions/WebExtensionPolicy.cpp -index d59507fcdd59..2580bc932dd1 100644 ---- toolkit/components/extensions/WebExtensionPolicy.cpp -+++ toolkit/components/extensions/WebExtensionPolicy.cpp -@@ -681,8 +681,7 @@ DocInfo::Principal() const - const URLInfo& - DocInfo::PrincipalURL() const - { -- if (!URL().InheritsPrincipal() || -- !(Principal() && Principal()->GetIsCodebasePrincipal())) { -+ if (!(Principal() && Principal()->GetIsCodebasePrincipal())) { - return URL(); - } - |