chromium/third_party/blink/renderer/core/css/properties/longhands/custom_property_test.cc

// Copyright 2018 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/properties/longhands/custom_property.h"

#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/renderer/core/css/css_numeric_literal_value.h"
#include "third_party/blink/renderer/core/css/css_primitive_value.h"
#include "third_party/blink/renderer/core/css/css_test_helpers.h"
#include "third_party/blink/renderer/core/css/css_unparsed_declaration_value.h"
#include "third_party/blink/renderer/core/css/parser/css_parser_context.h"
#include "third_party/blink/renderer/core/css/parser/css_parser_local_context.h"
#include "third_party/blink/renderer/core/css/parser/css_tokenizer.h"
#include "third_party/blink/renderer/core/css/resolver/style_resolver.h"
#include "third_party/blink/renderer/core/css/resolver/style_resolver_state.h"
#include "third_party/blink/renderer/core/dom/node_computed_style.h"
#include "third_party/blink/renderer/core/html/html_element.h"
#include "third_party/blink/renderer/core/testing/page_test_base.h"
#include "third_party/blink/renderer/platform/heap/garbage_collected.h"
#include "third_party/blink/renderer/platform/testing/runtime_enabled_features_test_helpers.h"

namespace blink {

RegisterProperty;

namespace {

class CustomPropertyTest : public PageTestBase {};

}  // namespace

TEST_F(CustomPropertyTest, UnregisteredPropertyIsInherited) {}

TEST_F(CustomPropertyTest, RegisteredNonInheritedPropertyIsNotInherited) {}

TEST_F(CustomPropertyTest, RegisteredInheritedPropertyIsInherited) {}

TEST_F(CustomPropertyTest, StaticVariableInstance) {}

TEST_F(CustomPropertyTest, PropertyID) {}

TEST_F(CustomPropertyTest, GetPropertyNameAtomicString) {}

TEST_F(CustomPropertyTest, ComputedCSSValueUnregistered) {}

TEST_F(CustomPropertyTest, ComputedCSSValueInherited) {}

TEST_F(CustomPropertyTest, ComputedCSSValueNonInherited) {}

TEST_F(CustomPropertyTest, ComputedCSSValueInitial) {}

TEST_F(CustomPropertyTest, ComputedCSSValueEmptyInitial) {}

TEST_F(CustomPropertyTest, ComputedCSSValueLateRegistration) {}

TEST_F(CustomPropertyTest, ComputedCSSValueNumberCalc) {}

TEST_F(CustomPropertyTest, ComputedCSSValueIntegerCalc) {}

TEST_F(CustomPropertyTest, ParseSingleValueUnregistered) {}

TEST_F(CustomPropertyTest, ParseSingleValueAnimationTainted) {}

TEST_F(CustomPropertyTest, ParseSingleValueTyped) {}

TEST_F(CustomPropertyTest, GetCSSPropertyName) {}

TEST_F(CustomPropertyTest, SupportsGuaranteedInvalid) {}

TEST_F(CustomPropertyTest, HasInitialValue) {}

TEST_F(CustomPropertyTest, ParseAnchorQueriesAsLength) {}

TEST_F(CustomPropertyTest, ParseAnchorQueriesAsLengthPercentage) {}

TEST_F(CustomPropertyTest, ValueMode) {}

}  // namespace blink