chromium/third_party/blink/renderer/core/layout/fragmentation_test.cc

// Copyright 2020 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/base_layout_algorithm_test.h"
#include "third_party/blink/renderer/core/layout/block_layout_algorithm.h"
#include "third_party/blink/renderer/core/layout/length_utils.h"
#include "third_party/blink/renderer/core/layout/physical_box_fragment.h"

namespace blink {
namespace {

class FragmentationTest : public BaseLayoutAlgorithmTest {};

TEST_F(FragmentationTest, MultipleFragments) {}

TEST_F(FragmentationTest, MultipleFragmentsAndColumnSpanner) {}

TEST_F(FragmentationTest, MultipleFragmentsNestedMulticol) {}

TEST_F(FragmentationTest, HasSeenAllChildrenIfc) {}

TEST_F(FragmentationTest, InkOverflowInline) {}

TEST_F(FragmentationTest, OffsetFromOwnerLayoutBoxFloat) {}

TEST_F(FragmentationTest, OffsetFromOwnerLayoutBoxNested) {}

}  // anonymous namespace
}  // namespace blink