chromium/third_party/blink/renderer/platform/graphics/dark_mode_filter_test.cc

// Copyright 2019 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/platform/graphics/dark_mode_filter.h"

#include <optional>

#include "cc/paint/paint_flags.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/renderer/platform/graphics/dark_mode_settings.h"
#include "third_party/skia/include/core/SkColor.h"

namespace blink {
namespace {

TEST(DarkModeFilterTest, ApplyDarkModeToColorsAndFlags) {}

TEST(DarkModeFilterTest, ApplyDarkModeToColorsAndFlagsWithInvertLightnessLAB) {}

TEST(DarkModeFilterTest, ApplyDarkModeToColorsAndFlagsWithContrast) {}

// crbug.com/1365680
TEST(DarkModeFilterTest, AdjustDarkenColorDoesNotInfiniteLoop) {}

TEST(DarkModeFilterTest, InvertedColorCacheSize) {}

TEST(DarkModeFilterTest, InvertedColorCacheZeroMaxKeys) {}

}  // namespace
}  // namespace blink