#include "third_party/blink/renderer/core/css/css_property_name.h"
#include "third_party/blink/renderer/core/css/properties/css_property.h"
#include "third_party/blink/renderer/core/css/properties/longhands.h"
#include "third_party/blink/renderer/core/dom/document.h"
#include "third_party/blink/renderer/core/testing/page_test_base.h"
#include "third_party/blink/renderer/platform/wtf/hash_map.h"
namespace blink {
class CSSPropertyNameTest : public PageTestBase { … };
TEST_F(CSSPropertyNameTest, IdStandardProperty) { … }
TEST_F(CSSPropertyNameTest, IdCustomProperty) { … }
TEST_F(CSSPropertyNameTest, GetNameStandardProperty) { … }
TEST_F(CSSPropertyNameTest, GetNameCustomProperty) { … }
TEST_F(CSSPropertyNameTest, OperatorEquals) { … }
TEST_F(CSSPropertyNameTest, From) { … }
TEST_F(CSSPropertyNameTest, FromNativeCSSProperty) { … }
TEST_F(CSSPropertyNameTest, IsEmptyValue) { … }
TEST_F(CSSPropertyNameTest, IsDeletedValue) { … }
TEST_F(CSSPropertyNameTest, GetHash) { … }
TEST_F(CSSPropertyNameTest, CompareEmptyDeleted) { … }
TEST_F(CSSPropertyNameTest, HashMapBasic) { … }
}