From owner-svn-ports-head@freebsd.org Tue Apr 24 00:18:36 2018 Return-Path: Delivered-To: svn-ports-head@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 CD207FAF0A0; Tue, 24 Apr 2018 00:18:35 +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 7CC376F1D7; Tue, 24 Apr 2018 00:18:35 +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 77C4B3660; Tue, 24 Apr 2018 00:18:35 +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 w3O0IZxa020185; Tue, 24 Apr 2018 00:18:35 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w3O0IZ44020183; Tue, 24 Apr 2018 00:18:35 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201804240018.w3O0IZ44020183@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:18:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r468160 - 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: 468160 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Apr 2018 00:18:36 -0000 Author: jbeich Date: Tue Apr 24 00:18:35 2018 New Revision: 468160 URL: https://svnweb.freebsd.org/changeset/ports/468160 Log: www/waterfox: apply a FF60 fix Added: head/www/waterfox/files/patch-bug1448200 (contents, props changed) Modified: head/www/waterfox/Makefile (contents, props changed) Modified: head/www/waterfox/Makefile ============================================================================== --- head/www/waterfox/Makefile Tue Apr 24 00:18:14 2018 (r468159) +++ head/www/waterfox/Makefile Tue Apr 24 00:18:35 2018 (r468160) @@ -2,7 +2,7 @@ PORTNAME= waterfox DISTVERSION= 56.1.0 -PORTREVISION= 14 +PORTREVISION= 15 CATEGORIES= www ipv6 MAINTAINER= jbeich@FreeBSD.org Added: head/www/waterfox/files/patch-bug1448200 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/waterfox/files/patch-bug1448200 Tue Apr 24 00:18:35 2018 (r468160) @@ -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, {});