#include "third_party/blink/renderer/core/paint/text_fragment_painter.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/renderer/core/layout/block_node.h"
#include "third_party/blink/renderer/core/layout/inline/inline_cursor.h"
#include "third_party/blink/renderer/core/layout/layout_block_flow.h"
#include "third_party/blink/renderer/core/paint/paint_controller_paint_test.h"
ElementsAre;
namespace blink {
class TextFragmentPainterTest : public PaintControllerPaintTest { … };
INSTANTIATE_PAINT_TEST_SUITE_P(…);
TEST_P(TextFragmentPainterTest, TestTextStyle) { … }
TEST_P(TextFragmentPainterTest, LineBreak) { … }
TEST_P(TextFragmentPainterTest, LineBreaksInLongDocument) { … }
TEST_P(TextFragmentPainterTest, DegenerateUnderlineIntercepts) { … }
TEST_P(TextFragmentPainterTest, SvgTextWithFirstLineTextDecoration) { … }
TEST_P(TextFragmentPainterTest, SvgTextWithTextDecorationNotInFirstLine) { … }
TEST_P(TextFragmentPainterTest, WheelEventListenerOnInlineElement) { … }
}