| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "core/layout/ng/layout_ng_block_flow.h" | 5 #include "core/layout/ng/layout_ng_block_flow.h" |
| 6 #include "core/layout/ng/ng_constraint_space_builder.h" | 6 #include "core/layout/ng/ng_constraint_space_builder.h" |
| 7 #include "core/layout/ng/ng_inline_layout_algorithm.h" | 7 #include "core/layout/ng/ng_inline_layout_algorithm.h" |
| 8 #include "core/layout/ng/ng_inline_node.h" | 8 #include "core/layout/ng/ng_inline_node.h" |
| 9 #include "platform/testing/RuntimeEnabledFeaturesTestHelpers.h" | 9 #include "platform/testing/RuntimeEnabledFeaturesTestHelpers.h" |
| 10 #include "platform/testing/UnitTestHelpers.h" | 10 #include "platform/testing/UnitTestHelpers.h" |
| 11 #include "web/WebViewImpl.h" | 11 #include "web/WebViewImpl.h" |
| 12 #include "web/tests/sim/SimCompositor.h" | 12 #include "web/tests/sim/SimCompositor.h" |
| 13 #include "web/tests/sim/SimDisplayItemList.h" | 13 #include "web/tests/sim/SimDisplayItemList.h" |
| 14 #include "web/tests/sim/SimRequest.h" | 14 #include "web/tests/sim/SimRequest.h" |
| 15 #include "web/tests/sim/SimTest.h" | 15 #include "web/tests/sim/SimTest.h" |
| 16 #include "wtf/CurrentTime.h" | 16 #include "wtf/CurrentTime.h" |
| 17 #include "wtf/text/CharacterNames.h" | 17 #include "wtf/text/CharacterNames.h" |
| 18 | 18 |
| 19 namespace blink { | 19 namespace blink { |
| 20 | 20 |
| 21 class NGInlineLayoutTest : public SimTest { | 21 class NGInlineLayoutTest : public SimTest { |
| 22 public: | 22 public: |
| 23 NGConstraintSpace* constraintSpaceForElement(LayoutNGBlockFlow* blockFlow) { | 23 NGConstraintSpace* constraintSpaceForElement(LayoutNGBlockFlow* blockFlow) { |
| 24 NGConstraintSpaceBuilder builder( | 24 return NGConstraintSpaceBuilder( |
| 25 FromPlatformWritingMode(blockFlow->style()->getWritingMode())); | 25 FromPlatformWritingMode(blockFlow->style()->getWritingMode())) |
| 26 builder.SetAvailableSize(NGLogicalSize(LayoutUnit(), LayoutUnit())); | 26 .SetAvailableSize(NGLogicalSize(LayoutUnit(), LayoutUnit())) |
| 27 builder.SetPercentageResolutionSize( | 27 .SetPercentageResolutionSize(NGLogicalSize(LayoutUnit(), LayoutUnit())) |
| 28 NGLogicalSize(LayoutUnit(), LayoutUnit())); | 28 .SetTextDirection(blockFlow->style()->direction()) |
| 29 NGConstraintSpace* constraintSpace = new NGConstraintSpace( | 29 .ToConstraintSpace(); |
| 30 FromPlatformWritingMode(blockFlow->style()->getWritingMode()), | |
| 31 blockFlow->style()->direction(), builder.ToConstraintSpace()); | |
| 32 return constraintSpace; | |
| 33 } | 30 } |
| 34 }; | 31 }; |
| 35 | 32 |
| 36 TEST_F(NGInlineLayoutTest, BlockWithSingleTextNode) { | 33 TEST_F(NGInlineLayoutTest, BlockWithSingleTextNode) { |
| 37 RuntimeEnabledFeatures::setLayoutNGEnabled(true); | 34 RuntimeEnabledFeatures::setLayoutNGEnabled(true); |
| 38 RuntimeEnabledFeatures::setLayoutNGInlineEnabled(true); | 35 RuntimeEnabledFeatures::setLayoutNGInlineEnabled(true); |
| 39 | 36 |
| 40 SimRequest mainResource("https://example.com/", "text/html"); | 37 SimRequest mainResource("https://example.com/", "text/html"); |
| 41 loadURL("https://example.com/"); | 38 loadURL("https://example.com/"); |
| 42 mainResource.complete( | 39 mainResource.complete( |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 String expectedText("Hello "); | 81 String expectedText("Hello "); |
| 85 expectedText.append(objectReplacementCharacter); | 82 expectedText.append(objectReplacementCharacter); |
| 86 expectedText.append("."); | 83 expectedText.append("."); |
| 87 EXPECT_EQ(expectedText, inlineBox->Text(0, 8)); | 84 EXPECT_EQ(expectedText, inlineBox->Text(0, 8)); |
| 88 | 85 |
| 89 NGPhysicalFragmentBase* fragment; | 86 NGPhysicalFragmentBase* fragment; |
| 90 layoutAlgorithm->Layout(nullptr, &fragment, nullptr); | 87 layoutAlgorithm->Layout(nullptr, &fragment, nullptr); |
| 91 } | 88 } |
| 92 | 89 |
| 93 } // namespace blink | 90 } // namespace blink |
| OLD | NEW |