RESOLVED FIXED 148814
break-after: column is not supported
https://bugs.webkit.org/show_bug.cgi?id=148814
Summary break-after: column is not supported
Ryosuke Niwa
Reported 2015-09-04 12:56:22 PDT
See http://www.w3.org/TR/css3-multicol/#break-after LayoutTests/imported/w3c/css/css-multicol-1/multicol-break-000.xht fails because of this.
Attachments
Patch (89.52 KB, patch)
2016-01-29 09:54 PST, Dave Hyatt
no flags
Patch (89.31 KB, patch)
2016-01-29 10:15 PST, Dave Hyatt
no flags
Patch (89.77 KB, patch)
2016-01-29 10:18 PST, Dave Hyatt
buildbot: commit-queue-
Archive of layout-test-results from ews100 for mac-yosemite (981.99 KB, application/zip)
2016-01-29 11:06 PST, Build Bot
no flags
Patch (90.36 KB, patch)
2016-01-29 11:09 PST, Dave Hyatt
dino: review+
Radar WebKit Bug Importer
Comment 1 2015-09-04 12:57:07 PDT
Ryosuke Niwa
Comment 2 2015-09-04 13:12:07 PDT
imported/w3c/css/css-multicol-1/multicol-break-001.xht also fails due to the lack of support of break-before: column.
Dave Hyatt
Comment 3 2016-01-29 09:45:35 PST
multicol-break-001.xht is an invalid test. It assumes that a break position can occur between the multicolumn parent and its first child, but this violates the spec, which states that breaks should only occur between siblings.
Dave Hyatt
Comment 4 2016-01-29 09:54:02 PST
Dave Hyatt
Comment 5 2016-01-29 10:15:52 PST
Dave Hyatt
Comment 6 2016-01-29 10:18:14 PST
WebKit Commit Bot
Comment 7 2016-01-29 10:24:56 PST
Attachment 270221 [details] did not pass style-queue: ERROR: Source/WebCore/css/CSSPrimitiveValueMappings.h:2286: Wrong number of spaces before statement. (expected: 4) [whitespace/indent] [4] ERROR: Source/WebCore/rendering/style/RenderStyleConstants.h:481: The parameter name "between" adds no information, so it should be removed. [readability/parameter_name] [5] Total errors found: 2 in 52 files If any of these errors are false positives, please file a bug against check-webkit-style.
Build Bot
Comment 8 2016-01-29 11:06:26 PST
Comment on attachment 270221 [details] Patch Attachment 270221 [details] did not pass mac-ews (mac): Output: http://webkit-queues.webkit.org/results/756098 New failing tests: fast/css/style-enumerate-properties.html
Build Bot
Comment 9 2016-01-29 11:06:29 PST
Created attachment 270224 [details] Archive of layout-test-results from ews100 for mac-yosemite The attached test failures were seen while running run-webkit-tests on the mac-ews. Bot: ews100 Port: mac-yosemite Platform: Mac OS X 10.10.5
Dave Hyatt
Comment 10 2016-01-29 11:09:29 PST
Morten Stenshorne
Comment 11 2016-01-29 12:33:30 PST
Comment on attachment 270225 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=270225&action=review Not a complete review or anything. Just stumbled across one thing. > Source/WebCore/rendering/RenderBlock.cpp:3537 > + || (checkColumnBreaks && child.style().breakInside() == AvoidColumnBreakInside) Shouldn't you check for AvoidBreakInside as well? (also in checkPageBreaks and checkRegionBreaks)
Dave Hyatt
Comment 12 2016-01-29 14:01:24 PST
Comment on attachment 270225 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=270225&action=review > Source/WebCore/rendering/RenderBlock.cpp:3536 > + return child.isUnsplittableForPagination() || child.style().breakInside() == AvoidBreakInside It's checked on this line above.
Dean Jackson
Comment 13 2016-01-29 15:30:14 PST
Comment on attachment 270225 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=270225&action=review We should add these new values to the inspector completion list too. > Source/WebCore/rendering/RenderBlockFlow.cpp:1495 > + bool checkBeforeAlways = (checkColumnBreaks && child.style().breakBefore() == ColumnBreakBetween) > + || (checkPageBreaks && alwaysPageBreak(child.style().breakBefore())) > + || (checkRegionBreaks && child.style().breakBefore() == RegionBreakBetween); I wonder if we should have "auto childBreakBeforeStyle = child.style().breakBefore();" although it isn't really any shorter.
Dave Hyatt
Comment 14 2016-01-30 07:29:37 PST
Landed in r195892. I'll file a followup bug to do the Web Inspector work.
Note You need to log in before you can comment on or make changes to this bug.