Title: [149366] trunk/Source/WebKit2
Revision
149366
Author
[email protected]
Date
2013-04-30 06:49:06 -0700 (Tue, 30 Apr 2013)

Log Message

[WK2][EFL] Spelling marker disappears while selection is being changed
https://bugs.webkit.org/show_bug.cgi?id=115165

Patch by Artur Moryc <[email protected]> on 2013-04-30
Reviewed by Anders Carlsson.

The marker for a misspelled word disappears while the cursor is being navigated along the word.

* WebProcess/WebCoreSupport/WebEditorClient.cpp:
(WebKit::WebEditorClient::shouldEraseMarkersAfterChangeSelection):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (149365 => 149366)


--- trunk/Source/WebKit2/ChangeLog	2013-04-30 13:47:49 UTC (rev 149365)
+++ trunk/Source/WebKit2/ChangeLog	2013-04-30 13:49:06 UTC (rev 149366)
@@ -1,3 +1,15 @@
+2013-04-30  Artur Moryc  <[email protected]>
+
+        [WK2][EFL] Spelling marker disappears while selection is being changed
+        https://bugs.webkit.org/show_bug.cgi?id=115165
+
+        Reviewed by Anders Carlsson.
+
+        The marker for a misspelled word disappears while the cursor is being navigated along the word.
+
+        * WebProcess/WebCoreSupport/WebEditorClient.cpp:
+        (WebKit::WebEditorClient::shouldEraseMarkersAfterChangeSelection):
+
 2013-04-30  Zalan Bujtas  <[email protected]>
 
         Animations fail to start on http://www.google.com/insidesearch/howsearchworks/thestory/

Modified: trunk/Source/WebKit2/WebProcess/WebCoreSupport/WebEditorClient.cpp (149365 => 149366)


--- trunk/Source/WebKit2/WebProcess/WebCoreSupport/WebEditorClient.cpp	2013-04-30 13:47:49 UTC (rev 149365)
+++ trunk/Source/WebKit2/WebProcess/WebCoreSupport/WebEditorClient.cpp	2013-04-30 13:49:06 UTC (rev 149366)
@@ -401,7 +401,7 @@
 bool WebEditorClient::shouldEraseMarkersAfterChangeSelection(WebCore::TextCheckingType type) const
 {
     // This prevents erasing spelling markers on OS X Lion or later to match AppKit on these Mac OS X versions.
-#if PLATFORM(MAC)
+#if PLATFORM(MAC) || PLATFORM(EFL)
     return type != TextCheckingTypeSpelling;
 #else
     UNUSED_PARAM(type);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to