From owner-svn-ports-all@freebsd.org Tue Apr 24 00:38:30 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 293F0FAF736; Tue, 24 Apr 2018 00:38:30 +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 CA93574C3D; Tue, 24 Apr 2018 00:38:29 +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 B63F43C23; Tue, 24 Apr 2018 00:38:29 +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 w3O0cTJ6030923; Tue, 24 Apr 2018 00:38:29 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w3O0cT2D030921; Tue, 24 Apr 2018 00:38:29 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201804240038.w3O0cT2D030921@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Tue, 24 Apr 2018 00:38:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r468166 - 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: 468166 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: Tue, 24 Apr 2018 00:38:30 -0000 Author: jbeich Date: Tue Apr 24 00:38:29 2018 New Revision: 468166 URL: https://svnweb.freebsd.org/changeset/ports/468166 Log: MFH: r468160 www/waterfox: apply a FF60 fix Approved by: ports-secteam blanket Added: branches/2018Q2/www/waterfox/files/patch-bug1448200 - copied unchanged from r468160, head/www/waterfox/files/patch-bug1448200 Modified: branches/2018Q2/www/waterfox/Makefile Directory Properties: branches/2018Q2/ (props changed) Modified: branches/2018Q2/www/waterfox/Makefile ============================================================================== --- branches/2018Q2/www/waterfox/Makefile Tue Apr 24 00:33:59 2018 (r468165) +++ branches/2018Q2/www/waterfox/Makefile Tue Apr 24 00:38:29 2018 (r468166) @@ -2,7 +2,7 @@ PORTNAME= waterfox DISTVERSION= 56.1.0 -PORTREVISION= 13 +PORTREVISION= 15 CATEGORIES= www ipv6 MAINTAINER= jbeich@FreeBSD.org Copied: branches/2018Q2/www/waterfox/files/patch-bug1448200 (from r468160, head/www/waterfox/files/patch-bug1448200) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2018Q2/www/waterfox/files/patch-bug1448200 Tue Apr 24 00:38:29 2018 (r468166, copy of r468160, head/www/waterfox/files/patch-bug1448200) @@ -0,0 +1,36 @@ +commit 64e2cd0e1310 +Author: Blake Kaplan +Date: Fri Mar 30 16:15:11 2018 -0700 + + Bug 1448200 - Handle the creation of the spellchecker more gracefully. r=Felipe a=lizzard + + If the user right-clicks on an input field and that click causes us to create + a spellchecker, then it won't be initialized in time to show the context menu. + Handle that case more gracefully by passing that state up to the parent. + + MozReview-Commit-ID: 1hjxloq2OLp + + --HG-- + extra : source : 8fbafbc46da259a054dd00feb93abc20e3140c56 + extra : histedit_source : 8f5a1548dad701ac23e34c9a15a59e67b50188c0 +--- + toolkit/modules/InlineSpellCheckerContent.jsm | 6 ++++++ + 1 file changed, 6 insertions(+) + +diff --git toolkit/modules/InlineSpellCheckerContent.jsm toolkit/modules/InlineSpellCheckerContent.jsm +index 5184f1ec7dcb..974fbba879d7 100644 +--- toolkit/modules/InlineSpellCheckerContent.jsm ++++ toolkit/modules/InlineSpellCheckerContent.jsm +@@ -49,6 +49,12 @@ var InlineSpellCheckerContent = { + enableRealTimeSpell: false }; + } + ++ if (spellChecker.initialSpellCheckPending) { ++ return { canSpellCheck: true, ++ initialSpellCheckPending: true, ++ enableRealTimeSpell: true }; ++ } ++ + let dictionaryList = {}; + let realSpellChecker = spellChecker.mInlineSpellChecker.spellChecker; + realSpellChecker.GetDictionaryList(dictionaryList, {});