[Webkit-unassigned] [Bug 41259] Interacting with a <select> element within a transformed and clipped container scrolls the container

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon Jun 28 09:52:51 PDT 2010


https://bugs.webkit.org/show_bug.cgi?id=41259


Simon Fraser (smfr) <simon.fraser at apple.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |simon.fraser at apple.com




--- Comment #4 from Simon Fraser (smfr) <simon.fraser at apple.com>  2010-06-28 09:52:51 PST ---
The bug is the use of getRect in Element::updateFocusAppearance():
        renderer()->enclosingLayer()->scrollRectToVisible(getRect());


IntRect Node::getRect() const
{
    // FIXME: broken with transforms
    if (renderer())
        return renderer()->absoluteBoundingBoxRect();
    return IntRect();
}

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list