Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(149)

Issue 584033002: [New Multicolumn] Add support for column-span:all (Closed)

Created:
6 years, 3 months ago by mstensho (USE GERRIT)
Modified:
6 years, 1 month ago
CC:
blink-reviews, blink-reviews-rendering, chromiumbugtracker_adobe.com, eae+blinkwatch, jchaffraix+rendering, leviw+renderwatch, pdr+renderingwatchlist_chromium.org, rune+blink, zoltan1
Base URL:
https://chromium.googlesource.com/chromium/blink.git@master
Project:
blink
Visibility:
Public.

Description

[New Multicolumn] Add support for column-span:all A column spanner needs to break out from regular column layout, so that it's sized by the multicol container, rather by the used column width (the width of the flow thread). A spanner will terminate any regular column content preceding it, establish its own RenderMultiColumnSpannerSet to follow the RenderMultiColumnSet established by the preceding column content. Regular column content following the spanner will be represented by another RenderMultiColumnSet following the spanner set. Since the renderer with column-span:all is still part of the flow thread, some hooks are needed in block layout code: we need some special code for sizing and also for block direction margin handling. Spanner margins may not collapse with anything inside columns. Margin properties are copied to the spanner set, so that block direction margins may be handled during column set layout, and be ignored during flow thread layout. Some extra attention is required when inserting and removing flow thread descendants now, because we need to figure out if the renderer inserted should trigger creation of a new multi column set or a spanner set. If a spanner is inserted in the middle of a multi column set, we need to detect this, split the set and put the spanner set inbetween. BUG=347325

Patch Set 1 #

Total comments: 11

Patch Set 2 : Code review, part 1 of 2. #

Patch Set 3 : Code review, part 2 of 2. #

Patch Set 4 : rebase master #

Patch Set 5 : rebase master #

Patch Set 6 : rebase master #

Patch Set 7 : rebase master #

Patch Set 8 : Fix ref in test. Tables don't do subpixel, and that made a difference on Windows and Mac. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+2752 lines, -227 lines) Patch
M LayoutTests/TestExpectations View 1 2 3 4 5 6 5 chunks +30 lines, -7 lines 0 comments Download
D LayoutTests/fast/multicol/newmulticol/direct-child-column-span-all.html View 1 chunk +0 lines, -16 lines 0 comments Download
D LayoutTests/fast/multicol/newmulticol/direct-child-column-span-all-expected.html View 1 chunk +0 lines, -16 lines 0 comments Download
A LayoutTests/fast/multicol/span/adjacent-spanners.html View 1 chunk +10 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/adjacent-spanners-expected.html View 1 chunk +6 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/block-becomes-spanner.html View 1 chunk +13 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/block-becomes-spanner-expected.html View 1 chunk +5 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/break-in-columns-before-spanner.html View 1 chunk +7 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/break-in-columns-before-spanner-expected.html View 1 chunk +6 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/change-spanner-display.html View 1 chunk +22 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/change-spanner-display-expected.html View 1 chunk +15 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/change-spanner-parent-display.html View 1 chunk +14 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/change-spanner-parent-display-expected.html View 1 chunk +7 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/height-decrease.html View 1 chunk +14 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/height-decrease-expected.html View 1 chunk +3 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/height-increase.html View 1 chunk +14 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/height-increase-expected.html View 1 chunk +6 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/insert-row-content1.html View 1 chunk +17 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/insert-row-content1-expected.html View 1 chunk +12 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/insert-row-content2.html View 1 chunk +19 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/insert-row-content2-expected.html View 1 chunk +12 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/insert-row-content3.html View 1 chunk +15 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/insert-row-content3-expected.html View 1 chunk +23 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/insert-row-content4.html View 1 chunk +18 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/insert-row-content4-expected.html View 1 chunk +11 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/insert-row-content5.html View 1 chunk +17 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/insert-row-content5-expected.html View 1 chunk +12 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/insert-row-content6.html View 1 chunk +19 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/insert-row-content6-expected.html View 1 chunk +12 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/insert-row-content7.html View 1 chunk +20 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/insert-row-content7-expected.html View 1 chunk +14 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/insert-row-content8.html View 1 chunk +16 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/insert-row-content8-expected.html View 1 chunk +8 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/insert-row-content9.html View 1 chunk +20 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/insert-row-content9-expected.html View 1 chunk +12 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/insert-spanner-child1.html View 1 chunk +12 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/insert-spanner-child1-expected.html View 1 chunk +3 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/insert-spanner-child2.html View 1 chunk +12 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/insert-spanner-child2-expected.html View 1 chunk +3 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/insert-spanner-child3.html View 1 chunk +12 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/insert-spanner-child3-expected.html View 1 chunk +3 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/insert-spanner1.html View 1 chunk +16 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/insert-spanner1-expected.html View 1 chunk +9 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/insert-spanner2.html View 1 chunk +17 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/insert-spanner2-expected.html View 1 chunk +10 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/insert-spanner3.html View 1 chunk +17 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/insert-spanner3-expected.html View 1 chunk +10 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/insert-spanner4.html View 1 chunk +20 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/insert-spanner4-expected.html View 1 chunk +13 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/insert-spanner5.html View 1 chunk +21 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/insert-spanner5-expected.html View 1 chunk +14 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/insert-spanner6.html View 1 chunk +20 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/insert-spanner6-expected.html View 1 chunk +13 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/insert-spanner7.html View 1 chunk +21 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/insert-spanner7-expected.html View 1 chunk +14 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/insert-spanner8.html View 1 chunk +12 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/insert-spanner8-expected.html View 1 chunk +5 lines, -0 lines 0 comments Download
A + LayoutTests/fast/multicol/span/multicol-with-spanner-becomes-regular-block.html View 2 chunks +9 lines, -7 lines 0 comments Download
A LayoutTests/fast/multicol/span/multicol-with-spanner-becomes-regular-block-expected.html View 1 chunk +12 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/remove-row-content1.html View 1 chunk +20 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/remove-row-content1-expected.html View 1 chunk +12 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/remove-row-content2.html View 1 chunk +16 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/remove-row-content2-expected.html View 1 chunk +10 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/remove-row-content3.html View 1 chunk +21 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/remove-row-content3-expected.html View 1 chunk +12 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/remove-row-content4.html View 1 chunk +16 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/remove-row-content4-expected.html View 1 chunk +10 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/remove-row-content5.html View 1 chunk +21 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/remove-row-content5-expected.html View 1 chunk +13 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/remove-row-content6.html View 1 chunk +17 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/remove-row-content6-expected.html View 1 chunk +10 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/remove-row-content7.html View 1 chunk +19 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/remove-row-content7-expected.html View 1 chunk +11 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/remove-row-content8.html View 1 chunk +19 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/remove-row-content8-expected.html View 1 chunk +11 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/remove-row-content9.html View 1 chunk +18 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/remove-row-content9-expected.html View 1 chunk +12 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/remove-spanner1.html View 1 chunk +15 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/remove-spanner1-expected.html View 1 chunk +7 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/remove-spanner2.html View 1 chunk +16 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/remove-spanner2-expected.html View 1 chunk +3 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/remove-spanner3.html View 1 chunk +16 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/remove-spanner3-expected.html View 1 chunk +3 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/remove-spanner4.html View 1 chunk +17 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/remove-spanner4-expected.html View 1 chunk +9 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/remove-spanner5.html View 1 chunk +16 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/remove-spanner5-expected.html View 1 chunk +8 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/remove-spanner6.html View 1 chunk +16 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/remove-spanner6-expected.html View 1 chunk +8 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/simple-margins.html View 1 chunk +7 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/simple-margins-expected.html View 1 chunk +5 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/sole-spanner.html View 1 chunk +7 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/sole-spanner-expected.html View 1 chunk +5 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/span-between-text.html View 1 chunk +7 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/span-between-text-expected.html View 1 chunk +4 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/spanner-becomes-regular-block.html View 1 chunk +21 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/spanner-becomes-regular-block-expected.html View 1 chunk +13 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/spanner-first.html View 1 chunk +8 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/spanner-first-expected.html View 1 chunk +6 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/spanner-img.html View 1 chunk +9 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/spanner-img-expected.html View 1 chunk +11 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/spanner-inline-block.html View 1 chunk +8 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/spanner-inline-block-expected.html View 1 chunk +2 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/spanner-last.html View 1 chunk +8 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/spanner-last-expected.html View 1 chunk +6 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/spanner-nested.html View 1 chunk +9 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/spanner-nested-dynamic.html View 1 chunk +17 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/spanner-nested-dynamic-expected.html View 1 chunk +2 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/spanner-nested-expected.html View 1 chunk +2 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/spanner-pseudo-after1.html View 1 chunk +9 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/spanner-pseudo-after1-expected.html View 1 chunk +7 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/spanner-pseudo-after2.html View 1 chunk +11 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/spanner-pseudo-after2-expected.html View 1 chunk +9 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/spanner-pseudo-after3.html View 1 chunk +15 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/spanner-pseudo-after3-expected.html View 1 chunk +9 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/spanner-pseudo-after4.html View 1 chunk +17 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/spanner-pseudo-after4-expected.html View 1 chunk +11 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/spanner-pseudo-before-after1.html View 1 chunk +10 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/spanner-pseudo-before-after1-expected.html View 1 chunk +9 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/spanner-pseudo-before-after2.html View 1 chunk +12 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/spanner-pseudo-before-after2-expected.html View 1 chunk +11 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/spanner-pseudo-before-after3.html View 1 chunk +16 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/spanner-pseudo-before-after3-expected.html View 1 chunk +10 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/spanner-pseudo-before-after4.html View 1 chunk +18 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/spanner-pseudo-before-after4-expected.html View 1 chunk +12 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/spanner-pseudo-before1.html View 1 chunk +9 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/spanner-pseudo-before1-expected.html View 1 chunk +7 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/spanner-pseudo-before2.html View 1 chunk +11 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/spanner-pseudo-before2-expected.html View 1 chunk +9 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/spanner-pseudo-before3.html View 1 chunk +15 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/spanner-pseudo-before3-expected.html View 1 chunk +9 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/spanner-pseudo-before4.html View 1 chunk +17 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/spanner-pseudo-before4-expected.html View 1 chunk +11 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/spanner-table.html View 1 chunk +13 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/spanner-table-expected.html View 1 2 3 4 5 6 7 1 chunk +8 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/spanner-with-margin.html View 1 chunk +9 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/spanner-with-margin-expected.html View 1 chunk +9 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/spanner1.html View 1 chunk +10 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/spanner1-expected.html View 1 chunk +14 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/spanner10.html View 1 chunk +11 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/spanner10-expected.html View 1 chunk +8 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/spanner2.html View 1 chunk +10 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/spanner2-expected.html View 1 chunk +12 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/spanner3.html View 1 chunk +10 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/spanner3-expected.html View 1 chunk +14 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/spanner4.html View 1 chunk +10 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/spanner4-expected.html View 1 chunk +13 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/spanner5.html View 1 chunk +10 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/spanner5-expected.html View 1 chunk +13 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/spanner6.html View 1 chunk +10 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/spanner6-expected.html View 1 chunk +13 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/spanner7.html View 1 chunk +8 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/spanner7-expected.html View 1 chunk +8 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/spanner8.html View 1 chunk +9 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/spanner8-expected.html View 1 chunk +7 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/trailing-margin-with-spanner.html View 1 chunk +6 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/trailing-margin-with-spanner-expected.html View 1 chunk +6 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/trailing-margin-with-spanner2.html View 1 chunk +13 lines, -0 lines 0 comments Download
A + LayoutTests/fast/multicol/span/trailing-margin-with-spanner2-expected.html View 1 chunk +1 line, -1 line 0 comments Download
A LayoutTests/fast/multicol/span/with-border.html View 1 chunk +20 lines, -0 lines 0 comments Download
A LayoutTests/fast/multicol/span/with-border-expected.html View 1 chunk +20 lines, -0 lines 0 comments Download
A + LayoutTests/platform/linux/virtual/regionbasedmulticol/fast/multicol/span/before-child-anonymous-column-block-expected.png View 1 2 3 4 5 6 Binary file 0 comments Download
A + LayoutTests/platform/linux/virtual/regionbasedmulticol/fast/multicol/span/before-child-anonymous-column-block-expected.txt View 1 chunk +5 lines, -4 lines 0 comments Download
A + LayoutTests/platform/linux/virtual/regionbasedmulticol/fast/multicol/span/clone-summary-expected.png View Binary file 0 comments Download
A LayoutTests/platform/linux/virtual/regionbasedmulticol/fast/multicol/span/clone-summary-expected.txt View 1 chunk +20 lines, -0 lines 0 comments Download
A LayoutTests/platform/linux/virtual/regionbasedmulticol/fast/multicol/span/span-as-immediate-child-complex-splitting-expected.png View Binary file 0 comments Download
A + LayoutTests/platform/linux/virtual/regionbasedmulticol/fast/multicol/span/span-as-immediate-child-complex-splitting-expected.txt View 1 2 3 4 5 6 5 chunks +122 lines, -100 lines 0 comments Download
A LayoutTests/platform/linux/virtual/regionbasedmulticol/fast/multicol/span/span-as-nested-inline-block-child-expected.png View 1 2 3 4 5 6 Binary file 0 comments Download
A + LayoutTests/platform/linux/virtual/regionbasedmulticol/fast/multicol/span/span-as-nested-inline-block-child-expected.txt View 1 2 3 4 2 chunks +14 lines, -11 lines 0 comments Download
M Source/core/core.gypi View 1 2 3 4 5 6 1 chunk +2 lines, -0 lines 0 comments Download
M Source/core/rendering/LayoutState.cpp View 1 2 chunks +8 lines, -1 line 0 comments Download
M Source/core/rendering/RenderBlock.cpp View 1 2 3 4 5 6 2 chunks +1 line, -4 lines 0 comments Download
M Source/core/rendering/RenderBlockFlow.cpp View 1 2 3 4 5 6 4 chunks +41 lines, -3 lines 0 comments Download
M Source/core/rendering/RenderBox.cpp View 1 2 3 4 5 6 6 chunks +22 lines, -4 lines 0 comments Download
M Source/core/rendering/RenderFlowThread.h View 1 2 3 4 5 3 chunks +19 lines, -4 lines 0 comments Download
M Source/core/rendering/RenderFlowThread.cpp View 1 2 3 4 5 1 chunk +1 line, -1 line 0 comments Download
M Source/core/rendering/RenderMultiColumnFlowThread.h View 1 2 3 4 5 6 chunks +37 lines, -7 lines 0 comments Download
M Source/core/rendering/RenderMultiColumnFlowThread.cpp View 1 2 9 chunks +340 lines, -17 lines 0 comments Download
M Source/core/rendering/RenderMultiColumnSet.h View 1 2 3 4 5 6 7 chunks +48 lines, -7 lines 0 comments Download
M Source/core/rendering/RenderMultiColumnSet.cpp View 1 2 3 4 5 4 chunks +57 lines, -15 lines 0 comments Download
A Source/core/rendering/RenderMultiColumnSpannerSet.h View 1 2 3 4 5 6 1 chunk +52 lines, -0 lines 0 comments Download
A Source/core/rendering/RenderMultiColumnSpannerSet.cpp View 1 chunk +65 lines, -0 lines 0 comments Download
M Source/core/rendering/RenderObject.h View 1 2 3 4 5 6 5 chunks +8 lines, -1 line 0 comments Download
M Source/core/rendering/RenderObject.cpp View 1 2 3 4 5 6 3 chunks +12 lines, -0 lines 0 comments Download
M Source/core/rendering/RenderPagedFlowThread.h View 1 2 3 4 5 1 chunk +3 lines, -1 line 0 comments Download

Messages

Total messages: 7 (1 generated)
mstensho (USE GERRIT)
6 years, 3 months ago (2014-09-19 14:49:39 UTC) #2
mstensho (USE GERRIT)
6 years, 2 months ago (2014-09-25 06:28:32 UTC) #3
Julien - ping for review
I haven't had time to dive deeply into the patch as it's really too big ...
6 years, 2 months ago (2014-09-30 00:39:32 UTC) #4
mstensho (USE GERRIT)
Yeah, sorry for the rather big patch. If you have suggestions on how to split ...
6 years, 2 months ago (2014-09-30 20:20:28 UTC) #5
mstensho (USE GERRIT)
6 years, 2 months ago (2014-10-06 12:40:56 UTC) #6
mstensho (USE GERRIT)
6 years, 1 month ago (2014-10-29 16:14:32 UTC) #7
Closing this. Breaking into smaller parts, starting with
https://codereview.chromium.org/688703003/

Powered by Google App Engine
This is Rietveld 408576698