Changeset 88725 in webkit


Ignore:
Timestamp:
Jun 13, 2011 3:47:37 PM (13 years ago)
Author:
commit-queue@webkit.org
Message:

2011-06-13 Michal Pakula vel Rutka <Michał Pakuła vel Rutka>

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):
Location:
trunk/Source/WebKit/efl
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/efl/ChangeLog

    r88723 r88725  
     12011-06-13  Michal Pakula vel Rutka  <m.pakula@samsung.com>
     2
     3        Reviewed by Eric Seidel.
     4
     5        [EFL] Input method hints not updated while clicking non-input field editable area
     6        https://bugs.webkit.org/show_bug.cgi?id=62539
     7
     8        This fixes a minor bug when input method hints are not updated while focus is
     9        changed from editable area with input tags to other which are does not have input
     10        tag i.e. textarea.
     11
     12        * ewk/ewk_view.cpp:
     13        (ewk_view_input_method_state_set):
     14
    1152011-06-13  Jaehun Lim  <ljaehun.lim@samsung.com>
    216
  • trunk/Source/WebKit/efl/ewk/ewk_view.cpp

    r88515 r88725  
    34423442    WebCore::Frame* focusedFrame = priv->page->focusController()->focusedOrMainFrame();
    34433443
     3444    priv->imh = 0;
    34443445    if (focusedFrame
    34453446        && focusedFrame->document()
     
    34503451        inputElement = static_cast<WebCore::HTMLInputElement*>(focusedFrame->document()->focusedNode());
    34513452        if (inputElement) {
    3452             priv->imh = 0;
    34533453            // for password fields, active == false
    34543454            if (!active) {
Note: See TracChangeset for help on using the changeset viewer.