chromium/third_party/blink/renderer/core/layout/svg/layout_svg_root_test.cc

// Copyright 2016 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/svg/layout_svg_root.h"

#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/renderer/core/layout/svg/layout_svg_shape.h"
#include "third_party/blink/renderer/core/layout/svg/svg_layout_support.h"
#include "third_party/blink/renderer/core/paint/paint_layer.h"
#include "third_party/blink/renderer/core/svg_names.h"
#include "third_party/blink/renderer/core/testing/core_unit_test_helper.h"
#include "third_party/blink/renderer/platform/testing/find_cc_layer.h"
#include "third_party/blink/renderer/platform/testing/paint_test_configurations.h"

namespace blink {

class LayoutSVGRootTest : public RenderingTest, public PaintTestConfigurations {};

INSTANTIATE_PAINT_TEST_SUITE_P();

TEST_P(LayoutSVGRootTest, VisualRectMappingWithoutViewportClipWithBorder) {}

TEST_P(LayoutSVGRootTest, VisualOverflowExpandsLayer) {}

TEST_P(LayoutSVGRootTest, VisualRectMappingWithViewportClipAndBorder) {}

TEST_P(LayoutSVGRootTest, RectBasedHitTestPartialOverlap) {}

// A PaintLayer is needed to ensure the parent layer knows about non-isolated
// descendants with blend mode.
TEST_P(LayoutSVGRootTest, PaintLayerType) {}

}  // namespace blink