Title: [130043] trunk/Source/WebKit/blackberry
Revision
130043
Author
mifen...@rim.com
Date
2012-10-01 07:04:09 -0700 (Mon, 01 Oct 2012)

Log Message

[BlackBerry] Remove suppressing of VKB hiding when processing changes.
https://bugs.webkit.org/show_bug.cgi?id=98023

Reviewed by Rob Buis.

PR 215881.

Allow JS to blur the input field while processing key handling.

Reviewed Internally by Chris Hutten-Czapski

* WebKitSupport/InputHandler.cpp:
(BlackBerry::WebKit::InputHandler::notifyClientOfKeyboardVisibilityChange):

Modified Paths

Diff

Modified: trunk/Source/WebKit/blackberry/ChangeLog (130042 => 130043)


--- trunk/Source/WebKit/blackberry/ChangeLog	2012-10-01 12:52:06 UTC (rev 130042)
+++ trunk/Source/WebKit/blackberry/ChangeLog	2012-10-01 14:04:09 UTC (rev 130043)
@@ -1,3 +1,19 @@
+2012-10-01  Mike Fenton  <mifen...@rim.com>
+
+        [BlackBerry] Remove suppressing of VKB hiding when processing changes.
+        https://bugs.webkit.org/show_bug.cgi?id=98023
+
+        Reviewed by Rob Buis.
+
+        PR 215881.
+
+        Allow JS to blur the input field while processing key handling.
+
+        Reviewed Internally by Chris Hutten-Czapski
+
+        * WebKitSupport/InputHandler.cpp:
+        (BlackBerry::WebKit::InputHandler::notifyClientOfKeyboardVisibilityChange):
+
 2012-09-28  Konrad Piascik  <kpias...@rim.com>
 
         [BlackBerry] Update the value of window.devicePixelRation when it is set programmatically

Modified: trunk/Source/WebKit/blackberry/WebKitSupport/InputHandler.cpp (130042 => 130043)


--- trunk/Source/WebKit/blackberry/WebKitSupport/InputHandler.cpp	2012-10-01 12:52:06 UTC (rev 130042)
+++ trunk/Source/WebKit/blackberry/WebKitSupport/InputHandler.cpp	2012-10-01 14:04:09 UTC (rev 130043)
@@ -1254,11 +1254,6 @@
     if (!isInputModeEnabled() && visible)
         return;
 
-    if (processingChange()) {
-        ASSERT(visible);
-        return;
-    }
-
     if (!m_delayKeyboardVisibilityChange) {
         m_webPage->showVirtualKeyboard(visible);
         return;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to