Changeset 45711 in webkit


Ignore:
Timestamp:
Jul 10, 2009 9:56:44 AM (15 years ago)
Author:
mitz@apple.com
Message:
  • address a review comment from Simon Fraser which I forgot to include in the last check-in
  • page/FrameView.cpp: (WebCore::FrameView::scrollToAnchor): Pass true to getRect() for maximum transform friendliness!
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r45710 r45711  
     12009-07-10  Dan Bernstein  <mitz@apple.com>
     2
     3        - address a review comment from Simon Fraser which I forgot to include
     4          in the last check-in
     5
     6        * page/FrameView.cpp:
     7        (WebCore::FrameView::scrollToAnchor): Pass true to getRect() for
     8        maximum transform friendliness!
     9
    1102009-07-10  Dan Bernstein  <mitz@apple.com>
    211
  • trunk/WebCore/page/FrameView.cpp

    r45710 r45711  
    11421142    IntRect rect;
    11431143    if (anchorNode != m_frame->document())
    1144         rect = anchorNode->getRect();
     1144        rect = anchorNode->getRect(true);
    11451145
    11461146    // Scroll nested layers and frames to reveal the anchor.
Note: See TracChangeset for help on using the changeset viewer.