From owner-svn-ports-branches@freebsd.org Thu Apr 19 00:32:39 2018 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AC89FF905A9; Thu, 19 Apr 2018 00:32:39 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6179B69C17; Thu, 19 Apr 2018 00:32:39 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 4245122410; Thu, 19 Apr 2018 00:32:39 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w3J0Wd6C012208; Thu, 19 Apr 2018 00:32:39 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w3J0WdbJ012206; Thu, 19 Apr 2018 00:32:39 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201804190032.w3J0WdbJ012206@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Thu, 19 Apr 2018 00:32:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r467744 - in branches/2018Q2/www/waterfox: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: in branches/2018Q2/www/waterfox: . files X-SVN-Commit-Revision: 467744 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Apr 2018 00:32:39 -0000 Author: jbeich Date: Thu Apr 19 00:32:38 2018 New Revision: 467744 URL: https://svnweb.freebsd.org/changeset/ports/467744 Log: MFH: r467741 www/waterfox: apply some FF60 fix Approved by: ports-secteam blanket Added: branches/2018Q2/www/waterfox/files/patch-bug1450565 - copied unchanged from r467741, head/www/waterfox/files/patch-bug1450565 Modified: branches/2018Q2/www/waterfox/Makefile Directory Properties: branches/2018Q2/ (props changed) Modified: branches/2018Q2/www/waterfox/Makefile ============================================================================== --- branches/2018Q2/www/waterfox/Makefile Thu Apr 19 00:31:29 2018 (r467743) +++ branches/2018Q2/www/waterfox/Makefile Thu Apr 19 00:32:38 2018 (r467744) @@ -2,7 +2,7 @@ PORTNAME= waterfox DISTVERSION= 56.1.0 -PORTREVISION= 11 +PORTREVISION= 12 CATEGORIES= www ipv6 MAINTAINER= jbeich@FreeBSD.org Copied: branches/2018Q2/www/waterfox/files/patch-bug1450565 (from r467741, head/www/waterfox/files/patch-bug1450565) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2018Q2/www/waterfox/files/patch-bug1450565 Thu Apr 19 00:32:38 2018 (r467744, copy of r467741, head/www/waterfox/files/patch-bug1450565) @@ -0,0 +1,27 @@ +commit 50367fb5e8ce +Author: Shane Caraveo +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);