#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) { … }
TEST_P(LayoutSVGRootTest, PaintLayerType) { … }
}