Changeset 128197 in webkit


Ignore:
Timestamp:
Sep 11, 2012 9:48:14 AM (12 years ago)
Author:
mifenton@rim.com
Message:

[BlackBerry] Colour Dialog popup request should return proper state.
https://bugs.webkit.org/show_bug.cgi?id=96392

Reviewed by Rob Buis.

Return proper state from openColorPopup dependent on
whether the popup actually opened.

Reviewed Internally by Chris Hutten-Czapski

  • WebKitSupport/InputHandler.cpp:

(BlackBerry::WebKit::InputHandler::openColorPopup):

Location:
trunk/Source/WebKit/blackberry
Files:
2 edited

Legend:

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

    r128188 r128197  
     12012-09-11  Mike Fenton  <mifenton@rim.com>
     2
     3        [BlackBerry] Colour Dialog popup request should return proper state.
     4        https://bugs.webkit.org/show_bug.cgi?id=96392
     5
     6        Reviewed by Rob Buis.
     7
     8        Return proper state from openColorPopup dependent on
     9        whether the popup actually opened.
     10
     11        Reviewed Internally by Chris Hutten-Czapski
     12
     13        * WebKitSupport/InputHandler.cpp:
     14        (BlackBerry::WebKit::InputHandler::openColorPopup):
     15
    1162012-09-11  Nima Ghanavatian  <nghanavatian@rim.com>
    217
  • trunk/Source/WebKit/blackberry/WebKitSupport/InputHandler.cpp

    r128188 r128197  
    10021002    // Check if popup already exists, close it if does.
    10031003    m_webPage->m_page->chrome()->client()->closePagePopup(0);
     1004
    10041005    ColorPickerClient* client = new ColorPickerClient(element->value(), m_webPage, element);
    1005     m_webPage->m_page->chrome()->client()->openPagePopup(client,  WebCore::IntRect());
    1006     return true;
     1006    return m_webPage->m_page->chrome()->client()->openPagePopup(client,  WebCore::IntRect());
    10071007}
    10081008
Note: See TracChangeset for help on using the changeset viewer.