chromium/third_party/blink/renderer/core/layout/inline/paragraph_line_breaker_test.cc

// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "third_party/blink/renderer/core/layout/inline/paragraph_line_breaker.h"

#include "third_party/blink/renderer/core/layout/constraint_space_builder.h"
#include "third_party/blink/renderer/core/layout/inline/inline_node.h"
#include "third_party/blink/renderer/core/layout/physical_box_fragment.h"
#include "third_party/blink/renderer/core/testing/core_unit_test_helper.h"

namespace blink {

class ParagraphLineBreakerTest : public RenderingTest {};

TEST_F(ParagraphLineBreakerTest, IsDisabledByBlockInInline) {}

TEST_F(ParagraphLineBreakerTest, IsDisabledByFirstLine) {}

TEST_F(ParagraphLineBreakerTest, IsDisabledByFloatLeading) {}

TEST_F(ParagraphLineBreakerTest, IsDisabledByFloat) {}

TEST_F(ParagraphLineBreakerTest, IsDisabledByForcedBreak) {}

TEST_F(ParagraphLineBreakerTest, IsDisabledByForcedBreakReusing) {}

TEST_F(ParagraphLineBreakerTest, IsDisabledByInitialLetter) {}

TEST_F(ParagraphLineBreakerTest, IsDisabledByTabulationCharacters) {}

}  // namespace blink