[webkit-reviews] review granted: [Bug 26783] REGRESSION (r45296): Subfolders not displayed in MobileMe iDisk Web App : [Attachment 31995] Make scroll{Width, Height} greater or equal to client{Width, Height}

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Sun Jun 28 19:17:57 PDT 2009


Simon Fraser (smfr) <simon.fraser at apple.com> has granted mitz at webkit.org's
request for review:
Bug 26783: REGRESSION (r45296): Subfolders not displayed in MobileMe iDisk Web
App
https://bugs.webkit.org/show_bug.cgi?id=26783

Attachment 31995: Make scroll{Width, Height} greater or equal to
client{Width,Height}
https://bugs.webkit.org/attachment.cgi?id=31995&action=review

------- Additional Comments from Simon Fraser (smfr) <simon.fraser at apple.com>
> Index: WebCore/rendering/RenderBox.cpp
> ===================================================================
> --- WebCore/rendering/RenderBox.cpp	(revision 45331)
> +++ WebCore/rendering/RenderBox.cpp	(working copy)
> @@ -254,7 +254,7 @@ int RenderBox::scrollWidth() const
>	   return layer()->scrollWidth();
>      // For objects with visible overflow, this matches IE.
>      if (style()->direction() == LTR)
> -	   return rightmostPosition(true, false) - borderLeft();
> +	   return max(clientWidth() , rightmostPosition(true, false) -
borderLeft());

Extra space here.


More information about the webkit-reviews mailing list