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

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

Issue 2270983002: [layoutng] Add an NGFragmentBuilder (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove SwapChildren 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_test.cc
diff --git a/third_party/WebKit/Source/core/layout/ng/ng_block_layout_algorithm_test.cc b/third_party/WebKit/Source/core/layout/ng/ng_block_layout_algorithm_test.cc
index 6d2432b78135389d847d481832eec6f09fcb11b0..f5f956c4a9e347b96d196b0d91254be2d1869f20 100644
--- a/third_party/WebKit/Source/core/layout/ng/ng_block_layout_algorithm_test.cc
+++ b/third_party/WebKit/Source/core/layout/ng/ng_block_layout_algorithm_test.cc
@@ -31,8 +31,8 @@ TEST_F(NGBlockLayoutAlgorithmTest, FixedSize) {
NGBlockLayoutAlgorithm algorithm(style_, NGBoxIterator(NGBox()));
NGFragment* frag = algorithm.layout(space);
- EXPECT_EQ(frag->inlineSize(), LayoutUnit(30));
- EXPECT_EQ(frag->blockSize(), LayoutUnit(40));
+ EXPECT_EQ(frag->InlineSize(), LayoutUnit(30));
+ EXPECT_EQ(frag->BlockSize(), LayoutUnit(40));
}
} // namespace

Powered by Google App Engine
This is Rietveld 408576698