Changeset 20433 in webkit


Ignore:
Timestamp:
Mar 23, 2007 8:02:54 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/branches/3.1m
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • S60/branches/3.1m/WebCore/ChangeLog

    r20409 r20433  
     12007-03-20  sareen 
     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/branches/3.1m/WebCore/bridge/WebCoreBridge.cpp

    r20409 r20433  
    28322832            if(aFocusNode->renderer()) {
    28332833              if(aFocusNode->renderer()->isWidget()) {
    2834             elType = EWebCoreElementObjectBox;
     2834                 QWidget *widget = static_cast<RenderWidget *>(aFocusNode->renderer())->widget();
     2835                 //Required to update the correct softkeys in the webkit.
     2836                 if( widget->isActive() )
     2837                     elType = EWebCoreElementActivatedObjectBox;
     2838                 else
     2839                      elType = EWebCoreElementObjectBox;
    28352840              }
    28362841              else {
  • S60/branches/3.1m/WebKit/BrowserView/src/KeyEventHandler.cpp

    r19913 r20433  
    288288                        CCoeEnv::Static()->SimulateKeyEventL( inputEvent, EEventKey );
    289289                        }
    290                     // if it is activate key event and the key is consumed , the softkeys should be updated
     290                    // if it is activate key event and the key is consumed , the softkeys & cursor should be updated
    291291                    iWebKitView->WebKitControl().BrCtl().UpdateDefaultSoftkeysL();
     292                    if( ( iWebKitView->FocusedElementType() != TBrCtlDefs::EElementActivatedInputBox ) &&
     293                        ( iWebKitView->FocusedElementType() != TBrCtlDefs::EElementActivatedObjectBox ) )
     294                          {
     295                          iWebKitView->Cursor()->Reset();
     296                          }
    292297                    }
    293298                }
  • S60/branches/3.1m/WebKit/ChangeLog

    r20431 r20433  
     12007-03-20  sareen 
     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        * BrowserView/src/KeyEventHandler.cpp:
     8        (CKeyEventHandler::HandleOfferKeyEventL):
     9
    1102007-03-22  hongzhao  <set EMAIL_ADDRESS environment variable>
    211
Note: See TracChangeset for help on using the changeset viewer.