[Webkit-unassigned] [Bug 47514] CSS transforms should affect scrolling
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Thu Oct 14 15:47:21 PDT 2010
https://bugs.webkit.org/show_bug.cgi?id=47514
--- Comment #19 from Dave Hyatt <hyatt at apple.com> 2010-10-14 15:47:21 PST ---
This check:
if (!isRenderView() || r->x() + r->width() > 0 || r->x() + r->rightmostPosition(false) > 0) {
>From lowestPosition should be unchanged. You're looking for objects to the left of the root still.
This is the check that can just be yanked:
if (!includeSelf && firstLineBox()) {
3411 for (InlineFlowBox* currBox = firstLineBox(); currBox; currBox = currBox->nextLineBox())
3412 top = min(top, (int)currBox->y() + relativeOffset);
3413 }
--
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