chromium/third_party/blink/renderer/core/layout/table/layout_table_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/table/layout_table.h"

#include "third_party/blink/renderer/core/layout/table/layout_table_section.h"
#include "third_party/blink/renderer/core/testing/core_unit_test_helper.h"

namespace blink {

namespace {

class LayoutTableTest : public RenderingTest {};

TEST_F(LayoutTableTest, OverflowViaOutline) {}

TEST_F(LayoutTableTest, OverflowWithCollapsedBorders) {}

TEST_F(LayoutTableTest, CollapsedBorders) {}

TEST_F(LayoutTableTest, CollapsedBordersWithCol) {}

TEST_F(LayoutTableTest, WidthPercentagesExceedHundred) {}

TEST_F(LayoutTableTest, CloseToMaxWidth) {}

TEST_F(LayoutTableTest, PaddingWithCollapsedBorder) {}

TEST_F(LayoutTableTest, OutOfOrderHeadAndBody) {}

TEST_F(LayoutTableTest, OutOfOrderFootAndBody) {}

TEST_F(LayoutTableTest, OutOfOrderHeadFootAndBody) {}

TEST_F(LayoutTableTest, VisualOverflowCleared) {}

}  // anonymous namespace

}  // namespace blink