chromium/third_party/blink/renderer/core/paint/text_painter_test.cc

// Copyright 2014 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/paint/text_painter.h"

#include <memory>

#include "cc/paint/paint_op.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/renderer/core/css/css_primitive_value.h"
#include "third_party/blink/renderer/core/css/css_property_names.h"
#include "third_party/blink/renderer/core/css_value_keywords.h"
#include "third_party/blink/renderer/core/frame/settings.h"
#include "third_party/blink/renderer/core/paint/paint_info.h"
#include "third_party/blink/renderer/core/style/shadow_data.h"
#include "third_party/blink/renderer/core/style/shadow_list.h"
#include "third_party/blink/renderer/core/testing/core_unit_test_helper.h"
#include "third_party/blink/renderer/platform/graphics/paint/drawing_display_item.h"
#include "third_party/blink/renderer/platform/graphics/paint/paint_controller.h"
#include "third_party/blink/renderer/core/paint/text_paint_style.h"
#include "third_party/skia/include/core/SkTextBlob.h"

namespace blink {
namespace {

class TextPainterTest : public RenderingTest {};

TEST_F(TextPainterTest, TextPaintingStyle_Simple) {}

TEST_F(TextPainterTest, TextPaintingStyle_AllProperties) {}

TEST_F(TextPainterTest, TextPaintingStyle_UsesTextAsClip) {}

TEST_F(TextPainterTest,
       TextPaintingStyle_ForceBackgroundToWhite_NoAdjustmentNeeded) {}

TEST_F(TextPainterTest, TextPaintingStyle_ForceBackgroundToWhite_Darkened) {}

TEST_F(TextPainterTest, CachedTextBlob) {}

}  // namespace
}  // namespace blink