Title: [88725] trunk/Source/WebKit/efl
Revision
88725
Author
commit-qu...@webkit.org
Date
2011-06-13 15:47:37 -0700 (Mon, 13 Jun 2011)

Log Message

2011-06-13  Michal Pakula vel Rutka  <m.pak...@samsung.com>

        Reviewed by Eric Seidel.

        [EFL] Input method hints not updated while clicking non-input field editable area
        https://bugs.webkit.org/show_bug.cgi?id=62539

        This fixes a minor bug when input method hints are not updated while focus is
        changed from editable area with input tags to other which are does not have input
        tag i.e. textarea.

        * ewk/ewk_view.cpp:
        (ewk_view_input_method_state_set):

Modified Paths

Diff

Modified: trunk/Source/WebKit/efl/ChangeLog (88724 => 88725)


--- trunk/Source/WebKit/efl/ChangeLog	2011-06-13 22:46:21 UTC (rev 88724)
+++ trunk/Source/WebKit/efl/ChangeLog	2011-06-13 22:47:37 UTC (rev 88725)
@@ -1,3 +1,17 @@
+2011-06-13  Michal Pakula vel Rutka  <m.pak...@samsung.com>
+
+        Reviewed by Eric Seidel.
+
+        [EFL] Input method hints not updated while clicking non-input field editable area
+        https://bugs.webkit.org/show_bug.cgi?id=62539
+
+        This fixes a minor bug when input method hints are not updated while focus is 
+        changed from editable area with input tags to other which are does not have input 
+        tag i.e. textarea.
+
+        * ewk/ewk_view.cpp:
+        (ewk_view_input_method_state_set):
+
 2011-06-13  Jaehun Lim  <ljaehun....@samsung.com>
 
         Reviewed by Eric Seidel.

Modified: trunk/Source/WebKit/efl/ewk/ewk_view.cpp (88724 => 88725)


--- trunk/Source/WebKit/efl/ewk/ewk_view.cpp	2011-06-13 22:46:21 UTC (rev 88724)
+++ trunk/Source/WebKit/efl/ewk/ewk_view.cpp	2011-06-13 22:47:37 UTC (rev 88725)
@@ -3441,6 +3441,7 @@
     EWK_VIEW_PRIV_GET(sd, priv);
     WebCore::Frame* focusedFrame = priv->page->focusController()->focusedOrMainFrame();
 
+    priv->imh = 0;
     if (focusedFrame
         && focusedFrame->document()
         && focusedFrame->document()->focusedNode()
@@ -3449,7 +3450,6 @@
 
         inputElement = static_cast<WebCore::HTMLInputElement*>(focusedFrame->document()->focusedNode());
         if (inputElement) {
-            priv->imh = 0;
             // for password fields, active == false
             if (!active) {
                 active = inputElement->isPasswordField();
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to