chromium/third_party/blink/renderer/core/css/css_gradient_value_test.cc

// Copyright 2017 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/css/css_gradient_value.h"

#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/renderer/core/css/css_to_length_conversion_data.h"
#include "third_party/blink/renderer/core/css/css_value_list.h"
#include "third_party/blink/renderer/core/css/parser/css_parser.h"
#include "third_party/blink/renderer/core/css/resolver/style_resolver.h"
#include "third_party/blink/renderer/core/dom/document.h"
#include "third_party/blink/renderer/core/dom/node_computed_style.h"
#include "third_party/blink/renderer/core/execution_context/security_context.h"
#include "third_party/blink/renderer/core/testing/dummy_page_holder.h"
#include "third_party/blink/renderer/platform/graphics/gradient.h"
#include "third_party/blink/renderer/platform/testing/task_environment.h"

namespace blink {

namespace {

CSSGradientValue;

const CSSGradientValue* ParseSingleGradient(const char* text) {}

bool CompareGradients(const char* gradient1, const char* gradient2) {}

bool IsUsingContainerRelativeUnits(const char* text) {}

TEST(CSSGradientValueTest, RadialGradient_Equals) {}

TEST(CSSGradientValueTest, RepeatingRadialGradientNan) {}

TEST(CSSGradientValueTest, IsUsingContainerRelativeUnits) {}

}  // namespace

}  // namespace blink