Title: [138220] trunk/Source/WebKit/chromium
Revision
138220
Author
commit-qu...@webkit.org
Date
2012-12-19 21:39:39 -0800 (Wed, 19 Dec 2012)

Log Message

[Chromium] Check Document now should work with continuous check off
https://bugs.webkit.org/show_bug.cgi?id=105228

Patch by Rachel Blum <gr...@chromium.org> on 2012-12-19
Reviewed by Anders Carlsson.

* src/EditorClientImpl.cpp:
(WebKit::EditorClientImpl::checkSpellingOfString):

Modified Paths

Diff

Modified: trunk/Source/WebKit/chromium/ChangeLog (138219 => 138220)


--- trunk/Source/WebKit/chromium/ChangeLog	2012-12-20 05:30:25 UTC (rev 138219)
+++ trunk/Source/WebKit/chromium/ChangeLog	2012-12-20 05:39:39 UTC (rev 138220)
@@ -1,5 +1,15 @@
 2012-12-19  Rachel Blum  <gr...@chromium.org>
 
+        [Chromium] Check Document now should work with continuous check off
+        https://bugs.webkit.org/show_bug.cgi?id=105228
+
+        Reviewed by Anders Carlsson.
+
+        * src/EditorClientImpl.cpp:
+        (WebKit::EditorClientImpl::checkSpellingOfString):
+
+2012-12-19  Rachel Blum  <gr...@chromium.org>
+
         [Chromium] Spellchecker should provide suggestions for non-caret selection, too
         https://bugs.webkit.org/show_bug.cgi?id=104841
 

Modified: trunk/Source/WebKit/chromium/src/EditorClientImpl.cpp (138219 => 138220)


--- trunk/Source/WebKit/chromium/src/EditorClientImpl.cpp	2012-12-20 05:30:25 UTC (rev 138219)
+++ trunk/Source/WebKit/chromium/src/EditorClientImpl.cpp	2012-12-20 05:39:39 UTC (rev 138220)
@@ -726,7 +726,7 @@
     int spellLength = 0;
 
     // Check to see if the provided text is spelled correctly.
-    if (isContinuousSpellCheckingEnabled() && m_webView->spellCheckClient())
+    if (m_webView->spellCheckClient())
         m_webView->spellCheckClient()->spellCheck(WebString(text, length), spellLocation, spellLength, 0);
     else {
         spellLocation = 0;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to