From owner-svn-ports-all@freebsd.org Fri Apr 20 20:08:06 2018 Return-Path: Delivered-To: svn-ports-all@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 C86D4F994A7; Fri, 20 Apr 2018 20:08:05 +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 762976E4B9; Fri, 20 Apr 2018 20:08:05 +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 710C31CE19; Fri, 20 Apr 2018 20:08:05 +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 w3KK85kb026725; Fri, 20 Apr 2018 20:08:05 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w3KK85Ll026722; Fri, 20 Apr 2018 20:08:05 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201804202008.w3KK85Ll026722@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Fri, 20 Apr 2018 20:08:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r467839 - in head/www/waterfox: . files X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: in head/www/waterfox: . files X-SVN-Commit-Revision: 467839 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Apr 2018 20:08:06 -0000 Author: jbeich Date: Fri Apr 20 20:08:04 2018 New Revision: 467839 URL: https://svnweb.freebsd.org/changeset/ports/467839 Log: www/waterfox: apply some FF60 fixes Added: head/www/waterfox/files/patch-bug1443149 (contents, props changed) head/www/waterfox/files/patch-bug1450538 (contents, props changed) Modified: head/www/waterfox/Makefile (contents, props changed) Modified: head/www/waterfox/Makefile ============================================================================== --- head/www/waterfox/Makefile Fri Apr 20 20:05:53 2018 (r467838) +++ head/www/waterfox/Makefile Fri Apr 20 20:08:04 2018 (r467839) @@ -2,7 +2,7 @@ PORTNAME= waterfox DISTVERSION= 56.1.0 -PORTREVISION= 12 +PORTREVISION= 13 CATEGORIES= www ipv6 MAINTAINER= jbeich@FreeBSD.org Added: head/www/waterfox/files/patch-bug1443149 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/waterfox/files/patch-bug1443149 Fri Apr 20 20:08:04 2018 (r467839) @@ -0,0 +1,32 @@ +commit b28daeec3432 +Author: Jamie Nicol +Date: Wed Mar 14 16:42:37 2018 +0000 + + Bug 1443149 - Ensure WebGLFBAttachPoint::HasImage() before dereferencing Format(). r=jrmuizel a=jcristau + + Previously we were checking IsDefined() rather than HasImage(), but + were hitting crashes. This was because Format() can return null if the + attach point is defined but the attached texture level or renderbuffer + aren't themselves defined. HasImage() checks for this case. + + MozReview-Commit-ID: 8KY3zPXXAFv + + --HG-- + extra : source : ebb9f83337a22ae8e77c3e7129f65178f1bedec5 +--- + dom/canvas/WebGLContextFramebufferOperations.cpp | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git dom/canvas/WebGLContextFramebufferOperations.cpp dom/canvas/WebGLContextFramebufferOperations.cpp +index 7133cdec2448..84a58e9da49f 100644 +--- dom/canvas/WebGLContextFramebufferOperations.cpp ++++ dom/canvas/WebGLContextFramebufferOperations.cpp +@@ -33,7 +33,7 @@ WebGLContext::Clear(GLbitfield mask) + if (mask & LOCAL_GL_COLOR_BUFFER_BIT && mBoundDrawFramebuffer) { + if (mask & LOCAL_GL_COLOR_BUFFER_BIT) { + for (const auto& cur : mBoundDrawFramebuffer->ColorDrawBuffers()) { +- if (!cur->IsDefined()) ++ if (!cur->HasImage()) + continue; + + switch (cur->Format()->format->componentType) { Added: head/www/waterfox/files/patch-bug1450538 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/waterfox/files/patch-bug1450538 Fri Apr 20 20:08:04 2018 (r467839) @@ -0,0 +1,27 @@ +commit 62f1f53340be +Author: Masatoshi Kimura +Date: Sat Apr 14 10:29:36 2018 +0900 + + Bug 1450538 - Use nsIURI::GetDisplaySpec to compensate a change to nsIURI::GetSpec. r=valentin a=jcristau + + MozReview-Commit-ID: 5xYAbx78K3q + + --HG-- + extra : source : aee0f2f18cde9801a95357c309bcdce7adf0f4f6 +--- + docshell/base/nsDocShell.cpp | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git docshell/base/nsDocShell.cpp docshell/base/nsDocShell.cpp +index 608977e54ec7..aae0e29265be 100644 +--- docshell/base/nsDocShell.cpp ++++ docshell/base/nsDocShell.cpp +@@ -13816,7 +13816,7 @@ nsDocShell::OnOverLink(nsIContent* aContent, + } + + nsAutoCString spec; +- rv = aURI->GetSpec(spec); ++ rv = aURI->GetDisplaySpec(spec); + NS_ENSURE_SUCCESS(rv, rv); + + NS_ConvertUTF8toUTF16 uStr(spec);