chromium/third_party/blink/renderer/core/css/properties/css_property_ref_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/css_property_ref.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/renderer/core/css/css_property_name.h"
#include "third_party/blink/renderer/core/css/css_test_helpers.h"
#include "third_party/blink/renderer/core/css/properties/longhands.h"
#include "third_party/blink/renderer/core/testing/page_test_base.h"

namespace blink {

namespace {

class CSSPropertyRefTest : public PageTestBase {};

}  // namespace

TEST_F(CSSPropertyRefTest, LookupUnregistred) {}

TEST_F(CSSPropertyRefTest, LookupRegistered) {}

TEST_F(CSSPropertyRefTest, LookupStandard) {}

TEST_F(CSSPropertyRefTest, IsValid) {}

TEST_F(CSSPropertyRefTest, FromCustomProperty) {}

TEST_F(CSSPropertyRefTest, FromStandardProperty) {}

TEST_F(CSSPropertyRefTest, FromStaticVariableInstance) {}

TEST_F(CSSPropertyRefTest, GetUnresolvedPropertyStandard) {}

TEST_F(CSSPropertyRefTest, GetUnresolvedPropertyCustom) {}

TEST_F(CSSPropertyRefTest, GetUnresolvedPropertyAlias) {}

TEST_F(CSSPropertyRefTest, GetResolvedPropertyAlias) {}

TEST_F(CSSPropertyRefTest, FromCSSPropertyNameCustom) {}

TEST_F(CSSPropertyRefTest, FromCSSPropertyNameStandard) {}

}  // namespace blink