Changeset 20434 in webkit


Ignore:
Timestamp:
Mar 23, 2007 8:05:15 AM (17 years ago)
Author:
spadma
Message:

2007-03-20 sareen

Reviewed by Zalan/Sachin.
DESC: Pointer cannot be moved after opening flash to player and returning to page ( MLIO-6YEGYC )
http://bugs.webkit.org/show_bug.cgi?id=13014

WARNING: NO TEST CASES ADDED OR CHANGED

  • bridge/WebCoreBridge.cpp: (CWebCoreBridge::NodeTypeB):
Location:
S60/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • S60/trunk/WebCore/ChangeLog

    r20408 r20434  
     1sareen,
     2
     3        Reviewed by Zalan/Sachin.
     4        DESC: Pointer cannot be moved after opening flash to player and returning to page ( MLIO-6YEGYC )
     5        http://bugs.webkit.org/show_bug.cgi?id=13014
     6 
     7        WARNING: NO TEST CASES ADDED OR CHANGED
     8
     9        * bridge/WebCoreBridge.cpp:
     10        (CWebCoreBridge::NodeTypeB):
     11
    1122007-03-22  spadma
    213
  • S60/trunk/WebCore/bridge/WebCoreBridge.cpp

    r20408 r20434  
    28862886            if(aFocusNode->renderer()) {
    28872887              if(aFocusNode->renderer()->isWidget()) {
    2888             elType = EWebCoreElementObjectBox;
     2888                 QWidget *widget = static_cast<RenderWidget *>(aFocusNode->renderer())->widget();
     2889                 //Required to update the correct softkeys in the webkit.
     2890                 if( widget->isActive() )
     2891                     elType = EWebCoreElementActivatedObjectBox;
     2892                 else
     2893                     elType = EWebCoreElementObjectBox;
    28892894              }
    28902895              else {
  • S60/trunk/WebKit/BrowserView/src/KeyEventHandler.cpp

    r19533 r20434  
    258258                    // if it is activate key event and the key is consumed , the softkeys & cursor should be updated
    259259                    iWebKitView->WebKitControl().BrCtl().UpdateDefaultSoftkeysL();
    260                     if(iWebKitView->FocusedElementType() != TBrCtlDefs::EElementActivatedInputBox)
    261                         iWebKitView->Cursor()->Reset();
     260                    if( ( iWebKitView->FocusedElementType() != TBrCtlDefs::EElementActivatedInputBox ) &&
     261                        ( iWebKitView->FocusedElementType() != TBrCtlDefs::EElementActivatedObjectBox ) )
     262                          {
     263                          iWebKitView->Cursor()->Reset();
     264                          }
    262265                    }
    263266                }
  • S60/trunk/WebKit/ChangeLog

    r20432 r20434  
     1sareen
     2        Reviewed by Zalan/Sachin.
     3        DESC: Pointer cannot be moved after opening flash to player and returning to page ( MLIO-6YEGYC )
     4        http://bugs.webkit.org/show_bug.cgi?id=13014
     5
     6        * BrowserView/src/KeyEventHandler.cpp:
     7        (CKeyEventHandler::HandleOfferKeyEventL):
     8
    192007-03-22  hongzhao  <set EMAIL_ADDRESS environment variable>
    210
Note: See TracChangeset for help on using the changeset viewer.