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

// Copyright 2021 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/physical_fragment.h"

#include "third_party/blink/renderer/core/layout/layout_view.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 PhysicalFragmentTest : public RenderingTest {};

TEST_F(PhysicalFragmentTest, DumpFragmentTreeBasic) {}

// LayoutView is the containing block of an absolutely positioned descendant.
TEST_F(PhysicalFragmentTest, DumpFragmentTreeWithAbspos) {}

// An NG object is the containing block of an absolutely positioned descendant.
TEST_F(PhysicalFragmentTest, DumpFragmentTreeWithAbsposInRelpos) {}

// A legacy grid with another legacy grid inside, and some NG objects, too.
TEST_F(PhysicalFragmentTest, DumpFragmentTreeWithGrid) {}

TEST_F(PhysicalFragmentTest, DumpFragmentTreeWithTargetInsideColumn) {}

}  // namespace blink