Date: Tue, 24 Apr 2018 00:18:35 +0000 (UTC) From: Jan Beich <jbeich@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r468160 - in head/www/waterfox: . files Message-ID: <201804240018.w3O0IZ44020183@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <mrbkap@gmail.com> +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, {});
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201804240018.w3O0IZ44020183>