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

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

Issue 2230803005: [LayoutNG] Add writing-mode and direction to NGFragmentBase (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase w/HEAD 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/layout/ng/ng_fragment.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 d21d3927d98c5334f4b181dc4381a835d60bcfdf..56d0fad1e665d019a98e43b8fa0610599e88193c 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,8 +36,9 @@ NGFragment* NGBlockLayoutAlgorithm::layout(
LayoutUnit blockSize =
computeBlockSizeForFragment(constraintSpace, *m_style, contentSize);
- NGFragment* returnFragment =
- new NGFragment(inlineSize, blockSize, inlineSize, blockSize);
+ NGFragment* returnFragment = new NGFragment(
+ inlineSize, blockSize, inlineSize, blockSize,
+ NGFragmentBase::HorizontalTopBottom, NGFragmentBase::LeftToRight);
returnFragment->swapChildren(childFragments);
return returnFragment;
}
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/layout/ng/ng_fragment.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698