RESOLVED FIXED 128590
[CSS Regions] Overflow above the first region is not properly painted for regions with padding
https://bugs.webkit.org/show_bug.cgi?id=128590
Summary [CSS Regions] Overflow above the first region is not properly painted for reg...
Radu Stavila
Reported 2014-02-11 02:01:50 PST
[CSS Regions] Overflow above the first region is not properly painted for regions with padding
Attachments
Patch (6.17 KB, patch)
2014-02-11 03:06 PST, Radu Stavila
abucur: review-
Patch with update CL (5.98 KB, patch)
2014-02-11 06:43 PST, Radu Stavila
no flags
Radu Stavila
Comment 1 2014-02-11 03:06:07 PST
Andrei Bucur
Comment 2 2014-02-11 05:59:48 PST
Comment on attachment 223833 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=223833&action=review > Source/WebCore/ChangeLog:10 > + anonymous regions, regions never have borders/padding/margins. All of these are found The CL should emphasize the technical problem is we use the layer of the region container (with a coordinate system) but we offset the content using the location of the region. If the anonymous region had a layer and we used that instead of the region container layer, there wouldn't have been any problems. It's less important the fact anonymous regions don't have borders/padding/margins. > Source/WebCore/rendering/RenderLayer.cpp:5250 > + LayoutRect regionContentBox = region->regionContainer()->contentBoxRect(); mapLayerClipRectsToFragmentationLayer can take just RenderNamedFlowThreadFragments as a parameter or generic RenderRegions? > Source/WebCore/rendering/RenderRegion.cpp:153 > +RenderBlockFlow* RenderRegion::regionContainer() const Can we move this on RenderNamedFlowFragment? It makes more sense considering we assert the parent is a RenderNamedFlowFragmentContainer.
Radu Stavila
Comment 3 2014-02-11 06:39:48 PST
Comment on attachment 223833 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=223833&action=review >> Source/WebCore/rendering/RenderLayer.cpp:5250 >> + LayoutRect regionContentBox = region->regionContainer()->contentBoxRect(); > > mapLayerClipRectsToFragmentationLayer can take just RenderNamedFlowThreadFragments as a parameter or generic RenderRegions? I'll create a new issue to use RenderNamedFlowFragment whenever possible instead of RenderRegion.
Radu Stavila
Comment 4 2014-02-11 06:43:22 PST
Created attachment 223849 [details] Patch with update CL
Andrei Bucur
Comment 5 2014-02-11 06:44:53 PST
(In reply to comment #3) > (From update of attachment 223833 [details]) > View in context: https://bugs.webkit.org/attachment.cgi?id=223833&action=review > > >> Source/WebCore/rendering/RenderLayer.cpp:5250 > >> + LayoutRect regionContentBox = region->regionContainer()->contentBoxRect(); > > > > mapLayerClipRectsToFragmentationLayer can take just RenderNamedFlowThreadFragments as a parameter or generic RenderRegions? > > I'll create a new issue to use RenderNamedFlowFragment whenever possible instead of RenderRegion. Great!
WebKit Commit Bot
Comment 6 2014-02-11 08:07:07 PST
Comment on attachment 223849 [details] Patch with update CL Clearing flags on attachment: 223849 Committed r163873: <http://trac.webkit.org/changeset/163873>
WebKit Commit Bot
Comment 7 2014-02-11 08:07:10 PST
All reviewed patches have been landed. Closing bug.
Note You need to log in before you can comment on or make changes to this bug.