MFH: r467741

www/waterfox: apply some FF60 fix

Approved by:	ports-secteam blanket
This commit is contained in:
Jan Beich 2018-04-19 00:32:38 +00:00
parent 58fce698a0
commit 3f16acddc5
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/branches/2018Q2/; revision=467744
2 changed files with 28 additions and 1 deletions

View File

@ -2,7 +2,7 @@
PORTNAME= waterfox
DISTVERSION= 56.1.0
PORTREVISION= 11
PORTREVISION= 12
CATEGORIES= www ipv6
MAINTAINER= jbeich@FreeBSD.org

View File

@ -0,0 +1,27 @@
commit 50367fb5e8ce
Author: Shane Caraveo <scaraveo@mozilla.com>
Date: Tue Apr 17 10:06:13 2018 -0500
Bug 1450565 use GET for initial authorization request, r=mossop a=jcristau
MozReview-Commit-ID: 70PQSeoxvOF
--HG--
extra : source : e17c105c0be870ad5d07a1ff0b0a5da1646f35a7
---
toolkit/components/extensions/ext-identity.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git toolkit/components/extensions/ext-identity.js toolkit/components/extensions/ext-identity.js
index db4ea3e80a06..ab7811774fb6 100644
--- toolkit/components/extensions/ext-identity.js
+++ toolkit/components/extensions/ext-identity.js
@@ -14,7 +14,7 @@ var {
const checkRedirected = (url, redirectURI) => {
return new Promise((resolve, reject) => {
let xhr = new XMLHttpRequest();
- xhr.open("HEAD", url);
+ xhr.open("GET", url);
// We expect this if the user has not authenticated.
xhr.onload = () => {
reject(0);