Summary: | Prepare RenderObject for FractionalLayoutUnits | ||||||
---|---|---|---|---|---|---|---|
Product: | WebKit | Reporter: | Levi Weintraub <leviw> | ||||
Component: | Layout and Rendering | Assignee: | Levi Weintraub <leviw> | ||||
Status: | RESOLVED FIXED | ||||||
Severity: | Normal | CC: | darin, eae, eric, jchaffraix, simon.fraser, webkit.review.bot | ||||
Priority: | P2 | ||||||
Version: | 528+ (Nightly build) | ||||||
Hardware: | Unspecified | ||||||
OS: | Unspecified | ||||||
Bug Depends on: | |||||||
Bug Blocks: | 60318 | ||||||
Attachments: |
|
Description
Levi Weintraub
2012-03-14 18:08:10 PDT
Created attachment 131970 [details]
Patch
Pingin' those happy reviewers once again. Comment on attachment 131970 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=131970&action=review > Source/WebCore/rendering/RenderObject.cpp:1368 > +IntRect RenderObject::pixelSnappedAbsoluteClippedOverflowRect() const > +{ > + return pixelSnappedIntRect(absoluteClippedOverflowRect()); > +} Bleh. Why wouldn't people just call absoluteClippedOverFlowRect().snapped()? Comment on attachment 131970 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=131970&action=review >> Source/WebCore/rendering/RenderObject.cpp:1368 >> +} > > Bleh. Why wouldn't people just call absoluteClippedOverFlowRect().snapped()? Primarily we have this function to export from WebCore. We don't want to expose the LayoutRect version to outside callers. Comment on attachment 131970 [details] Patch Clearing flags on attachment: 131970 Committed r111082: <http://trac.webkit.org/changeset/111082> All reviewed patches have been landed. Closing bug. |