chromium/third_party/blink/renderer/core/layout/layout_input_node_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/layout_input_node.h"

#include "third_party/blink/renderer/core/layout/block_node.h"
#include "third_party/blink/renderer/core/layout/layout_view.h"
#include "third_party/blink/renderer/core/testing/core_unit_test_helper.h"

namespace blink {

namespace {

#if DCHECK_IS_ON()

class LayoutInputNodeTest : public RenderingTest {};

TEST_F(LayoutInputNodeTest, DumpBasic) {}

TEST_F(LayoutInputNodeTest, DumpBlockInInline) {}

TEST_F(LayoutInputNodeTest, DumpInlineBlockInInline) {}

TEST_F(LayoutInputNodeTest, DumpFloatInInline) {}

TEST_F(LayoutInputNodeTest, DumpAbsposInInline) {}

TEST_F(LayoutInputNodeTest, DumpRelposInline) {}

#endif  // DCHECK_IS_ON()

}  // anonymous namespace

}  // namespace blink