#include "third_party/blink/renderer/core/paint/paint_property_tree_printer.h"
#include "testing/gmock/include/gmock/gmock-matchers.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/renderer/core/layout/layout_object.h"
#include "third_party/blink/renderer/core/paint/paint_controller_paint_test.h"
#if DCHECK_IS_ON()
namespace blink {
class PaintPropertyTreePrinterTest : public PaintControllerPaintTest { … };
INSTANTIATE_PAINT_TEST_SUITE_P(…);
TEST_P(PaintPropertyTreePrinterTest, SimpleTransformTree) { … }
TEST_P(PaintPropertyTreePrinterTest, SimpleClipTree) { … }
TEST_P(PaintPropertyTreePrinterTest, SimpleEffectTree) { … }
TEST_P(PaintPropertyTreePrinterTest, SimpleScrollTree) { … }
TEST_P(PaintPropertyTreePrinterTest, SimpleTransformTreePath) { … }
TEST_P(PaintPropertyTreePrinterTest, SimpleClipTreePath) { … }
TEST_P(PaintPropertyTreePrinterTest, SimpleEffectTreePath) { … }
TEST_P(PaintPropertyTreePrinterTest, SimpleScrollTreePath) { … }
}
#endif