Changeset 17957 in webkit


Ignore:
Timestamp:
Nov 30, 2006 6:16:39 PM (17 years ago)
Author:
zbujtas
Message:

2006-11-30 yadavall <sriram.yadavalli@nokia.com>

Reviewed by Zalan Bujtas (zbujtas@gmail.com).
DESC: Tabbed navigation fixes
http://bugs.webkit.org/show_bug.cgi?id=11725

WARNING: NO TEST CASES ADDED OR CHANGED

  • kwq/KWQKHTMLPart.cpp: (KWQKHTMLPart::getNewTabbedCursorPosition): (KWQKHTMLPart::tabbedNavigation):
Location:
S60/trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • S60/trunk/WebCore/ChangeLog

    r17942 r17957  
     12006-11-30  yadavall  <sriram.yadavalli@nokia.com>
     2
     3        Reviewed by Zalan Bujtas (zbujtas@gmail.com).
     4        DESC: Tabbed navigation fixes
     5        http://bugs.webkit.org/show_bug.cgi?id=11725
     6
     7        WARNING: NO TEST CASES ADDED OR CHANGED
     8
     9        * kwq/KWQKHTMLPart.cpp:
     10        (KWQKHTMLPart::getNewTabbedCursorPosition):
     11        (KWQKHTMLPart::tabbedNavigation):
     12
    1132006-11-30  rathnasa  <sornalatha.rathnasamy@nokia.com>
    214
  • S60/trunk/WebCore/kwq/KWQKHTMLPart.cpp

    r17914 r17957  
    38143814
    38153815       //Resize the rect so that the cursor is comfortably inside the box
    3816        intersectRect.inflate(-2);
     3816       if(intersectRect.width()>2 && intersectRect.height()>2) {
     3817           intersectRect.inflate(-2);
     3818       }
    38173819
    38183820       if(!intersectRect.isEmpty()){
     
    40464048       QRect viewRect(focusedFramePart->view()->contentsX(),focusedFramePart->view()->contentsY(),
    40474049       focusedFramePart->view()->visibleWidth(),focusedFramePart->view()->visibleHeight());
    4048        if(focusRect.intersects(viewRect)) {
    4049           focusedFramePart->view()->scrollTo(focusRect.intersect(viewRect));
    4050        }
    4051        else {
     4050       if(viewRect.unite(focusRect) != viewRect) {
    40524051          focusedFramePart->view()->scrollTo(focusRect);
    40534052       }
Note: See TracChangeset for help on using the changeset viewer.