chromium/third_party/blink/renderer/core/inspector/inspector_contrast_test.cc

// Copyright 2021 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/inspector/inspector_contrast.h"

#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/renderer/core/css/css_value.h"
#include "third_party/blink/renderer/core/css/css_value_list.h"
#include "third_party/blink/renderer/core/css/style_engine.h"
#include "third_party/blink/renderer/core/frame/local_frame_view.h"
#include "third_party/blink/renderer/core/html/html_element.h"
#include "third_party/blink/renderer/core/style/computed_style_constants.h"
#include "third_party/blink/renderer/core/testing/dummy_page_holder.h"
#include "third_party/blink/renderer/platform/testing/task_environment.h"

namespace blink {

class InspectorContrastTest : public testing::Test {};

void InspectorContrastTest::SetUp() {}

TEST_F(InspectorContrastTest, GetBackgroundColors) {}

TEST_F(InspectorContrastTest, GetBackgroundColorsNoText) {}

TEST_F(InspectorContrastTest, GetBackgroundColorsBgOpacity) {}

TEST_F(InspectorContrastTest, GetBackgroundColorsBgOpacityParent) {}

TEST_F(InspectorContrastTest, GetBackgroundColorsElementWithOpacity) {}

TEST_F(InspectorContrastTest, GetBackgroundColorsBgHidden) {}

TEST_F(InspectorContrastTest, GetBackgroundColorsWithOpacity) {}

TEST_F(InspectorContrastTest, GetContrast) {}

TEST_F(InspectorContrastTest, GetContrastEmptyNodes) {}

TEST_F(InspectorContrastTest, GetContrastMultipleNodes) {}

}  // namespace blink