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

Issue 79433004: Display anonymous regions in DRT (Closed)

Created:
7 years, 1 month ago by mihnea
Modified:
7 years ago
CC:
blink-reviews, chromiumbugtracker_adobe.com, bemjb+rendering_chromium.org, zoltan1, eae+blinkwatch, leviw+renderwatch, jchaffraix+rendering
Base URL:
https://chromium.googlesource.com/chromium/blink.git@master
Visibility:
Public.

Description

Display anonymous regions in DRT This patch allows displaying the anonymous region inside a block with flow-from style set. Before the patch: RenderRegion {DIV} at (200,200) size 52x52 [border: (1px solid #000000)] After the patch: RenderBlock (positioned) {DIV} at (200,200) size 52x52 [border: (1px solid #000000)] RenderNamedFlowFragment at (1,1) size 50x50 Before the patch: Flow Threads Thread with flow-name 'article' Regions for flow 'article' RenderRegion {DIV} #region_1 RenderRegion {DIV} #region_2 After the patch: Named flows Named flow 'article' Regions for named flow 'article' RenderNamedFlowFragment (anonymous child of {DIV} #region_1) RenderNamedFlowFragment (anonymous child of {DIV} #region_2) BUG=321217 Committed: https://src.chromium.org/viewvc/blink?view=rev&revision=162606

Patch Set 1 #

Total comments: 4

Patch Set 2 : Address review comments #

Total comments: 3

Patch Set 3 : Patch for landing #

Unified diffs Side-by-side diffs Delta from patch set Stats (+272 lines, -212 lines) Patch
M LayoutTests/fast/regions/auto-size/autoheight-regions-mark-expected.txt View 1 2 1 chunk +33 lines, -33 lines 0 comments Download
M LayoutTests/fast/regions/flows-dependency-dynamic-remove-expected.txt View 1 chunk +9 lines, -9 lines 0 comments Download
M LayoutTests/fast/regions/flows-dependency-same-flow-expected.txt View 1 2 1 chunk +14 lines, -13 lines 0 comments Download
M LayoutTests/fast/regions/text-region-split-small-pagination-expected.txt View 2 chunks +15 lines, -11 lines 0 comments Download
M LayoutTests/fast/repaint/overflow-flipped-writing-mode-block-in-regions-expected.txt View 1 chunk +6 lines, -5 lines 0 comments Download
M LayoutTests/fast/repaint/region-painting-invalidation-expected.txt View 1 chunk +9 lines, -7 lines 0 comments Download
M LayoutTests/fast/repaint/region-painting-via-layout-expected.txt View 1 chunk +7 lines, -6 lines 0 comments Download
M LayoutTests/platform/android/fast/regions/top-overflow-out-of-second-region-expected.txt View 2 chunks +12 lines, -9 lines 0 comments Download
M LayoutTests/platform/android/fast/repaint/region-painting-invalidation-expected.txt View 1 chunk +9 lines, -7 lines 0 comments Download
M LayoutTests/platform/linux/fast/repaint/japanese-rl-selection-repaint-in-regions-expected.txt View 2 chunks +6 lines, -5 lines 0 comments Download
M LayoutTests/platform/mac-lion/fast/repaint/japanese-rl-selection-repaint-in-regions-expected.txt View 2 chunks +6 lines, -5 lines 0 comments Download
M LayoutTests/platform/mac/fast/regions/multiple-directionality-changes-in-variable-width-regions-expected.txt View 2 chunks +12 lines, -9 lines 0 comments Download
M LayoutTests/platform/mac/fast/regions/top-overflow-out-of-second-region-expected.txt View 2 chunks +12 lines, -9 lines 0 comments Download
M LayoutTests/platform/mac/fast/repaint/japanese-rl-selection-repaint-in-regions-expected.txt View 2 chunks +6 lines, -5 lines 0 comments Download
M LayoutTests/platform/mac/fast/repaint/line-flow-with-floats-in-regions-expected.txt View 2 chunks +6 lines, -5 lines 0 comments Download
M LayoutTests/platform/win/fast/regions/multiple-directionality-changes-in-variable-width-regions-expected.txt View 2 chunks +12 lines, -9 lines 0 comments Download
M LayoutTests/platform/win/fast/regions/text-region-split-small-pagination-expected.txt View 2 chunks +15 lines, -11 lines 0 comments Download
M LayoutTests/platform/win/fast/regions/top-overflow-out-of-second-region-expected.txt View 2 chunks +12 lines, -9 lines 0 comments Download
M LayoutTests/platform/win/fast/repaint/japanese-rl-selection-repaint-in-regions-expected.txt View 2 chunks +6 lines, -5 lines 0 comments Download
M LayoutTests/platform/win/fast/repaint/line-flow-with-floats-in-regions-expected.txt View 2 chunks +6 lines, -5 lines 0 comments Download
M LayoutTests/platform/win/fast/repaint/region-painting-invalidation-expected.txt View 1 chunk +9 lines, -7 lines 0 comments Download
M Source/core/rendering/RenderBlock.cpp View 1 2 1 chunk +0 lines, -2 lines 0 comments Download
M Source/core/rendering/RenderRegion.h View 1 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/rendering/RenderTreeAsText.cpp View 1 2 3 chunks +48 lines, -24 lines 0 comments Download

Messages

Total messages: 6 (0 generated)
Julien - ping for review
https://codereview.chromium.org/79433004/diff/1/Source/core/rendering/RenderTreeAsText.cpp File Source/core/rendering/RenderTreeAsText.cpp (left): https://codereview.chromium.org/79433004/diff/1/Source/core/rendering/RenderTreeAsText.cpp#oldcode591 Source/core/rendering/RenderTreeAsText.cpp:591: ts << " invalid"; Why are we removing this ...
7 years, 1 month ago (2013-11-22 01:23:33 UTC) #1
mihnea
On 2013/11/22 01:23:33, Julien Chaffraix - AEDT wrote: > https://codereview.chromium.org/79433004/diff/1/Source/core/rendering/RenderTreeAsText.cpp > File Source/core/rendering/RenderTreeAsText.cpp (left): > ...
7 years, 1 month ago (2013-11-22 06:28:07 UTC) #2
mihnea
On 2013/11/22 06:28:07, mihnea wrote: > On 2013/11/22 01:23:33, Julien Chaffraix - AEDT wrote: > ...
7 years, 1 month ago (2013-11-22 07:25:48 UTC) #3
Julien - ping for review
lgtm https://codereview.chromium.org/79433004/diff/70001/Source/core/rendering/RenderBlock.cpp File Source/core/rendering/RenderBlock.cpp (left): https://codereview.chromium.org/79433004/diff/70001/Source/core/rendering/RenderBlock.cpp#oldcode5705 Source/core/rendering/RenderBlock.cpp:5705: return "RenderBody"; // FIXME: Temporary hack until we ...
7 years ago (2013-11-24 22:44:33 UTC) #4
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/mihnea@adobe.com/79433004/150001
7 years ago (2013-11-25 07:16:28 UTC) #5
commit-bot: I haz the power
7 years ago (2013-11-25 08:57:07 UTC) #6
Message was sent while issue was closed.
Change committed as 162606

Powered by Google App Engine
This is Rietveld 408576698