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

Unified Diff: third_party/WebKit/Source/core/layout/ng/ng_block_layout_algorithm.cc

Issue 2236933003: [LayoutNG] Add writing mode to NGDerivedConstraintSpace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/layout/ng/ng_block_layout_algorithm.cc
diff --git a/third_party/WebKit/Source/core/layout/ng/ng_block_layout_algorithm.cc b/third_party/WebKit/Source/core/layout/ng/ng_block_layout_algorithm.cc
index 56d0fad1e665d019a98e43b8fa0610599e88193c..cf9b8262da995a1d1d2ee16f07f0efa51fbc3c70 100644
--- a/third_party/WebKit/Source/core/layout/ng/ng_block_layout_algorithm.cc
+++ b/third_party/WebKit/Source/core/layout/ng/ng_block_layout_algorithm.cc
@@ -36,9 +36,9 @@ NGFragment* NGBlockLayoutAlgorithm::layout(
LayoutUnit blockSize =
computeBlockSizeForFragment(constraintSpace, *m_style, contentSize);
- NGFragment* returnFragment = new NGFragment(
- inlineSize, blockSize, inlineSize, blockSize,
- NGFragmentBase::HorizontalTopBottom, NGFragmentBase::LeftToRight);
+ NGFragment* returnFragment =
+ new NGFragment(inlineSize, blockSize, inlineSize, blockSize,
+ HorizontalTopBottom, LeftToRight);
returnFragment->swapChildren(childFragments);
return returnFragment;
}
« no previous file with comments | « third_party/WebKit/Source/core/core.gypi ('k') | third_party/WebKit/Source/core/layout/ng/ng_constraint_space.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698