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

// Copyright 2017 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_box_fragment.h"

#include "third_party/blink/renderer/core/layout/geometry/physical_offset.h"
#include "third_party/blink/renderer/core/layout/geometry/physical_rect.h"
#include "third_party/blink/renderer/core/testing/core_unit_test_helper.h"

namespace blink {

class PhysicalBoxFragmentTest : public RenderingTest {};

TEST_F(PhysicalBoxFragmentTest, FloatingDescendantsInlineChlidren) {}

TEST_F(PhysicalBoxFragmentTest, FloatingDescendantsBlockChlidren) {}

// HasFloatingDescendantsForPaint() should be set for each inline formatting
// context and should not be propagated across inline formatting context.
TEST_F(PhysicalBoxFragmentTest, FloatingDescendantsInlineBlock) {}

// HasFloatingDescendantsForPaint() should be set even if it crosses a block
// formatting context.
TEST_F(PhysicalBoxFragmentTest, FloatingDescendantsBlockFormattingContext) {}

TEST_F(PhysicalBoxFragmentTest, ReplacedBlock) {}

TEST_F(PhysicalBoxFragmentTest, IsFragmentationContextRoot) {}

TEST_F(PhysicalBoxFragmentTest, IsFragmentationContextRootNested) {}

TEST_F(PhysicalBoxFragmentTest, IsFragmentationContextRootFieldset) {}

TEST_F(PhysicalBoxFragmentTest, MayHaveDescendantAboveBlockStart) {}

TEST_F(PhysicalBoxFragmentTest, MayHaveDescendantAboveBlockStartBlockInInline) {}

TEST_F(PhysicalBoxFragmentTest, OverflowClipMarginVisualBox) {}

TEST_F(PhysicalBoxFragmentTest, CloneWithPostLayoutFragments) {}

}  // namespace blink