| Index: third_party/WebKit/Source/core/css/CSSStyleDeclarationTest.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/CSSStyleDeclarationTest.cpp b/third_party/WebKit/Source/core/css/CSSStyleDeclarationTest.cpp
|
| index 45d5bcd649e0f36bade15d42f5ab5cc07b4371ed..6376b4ba9ab8a050ecf99620a02a36f13800b90f 100644
|
| --- a/third_party/WebKit/Source/core/css/CSSStyleDeclarationTest.cpp
|
| +++ b/third_party/WebKit/Source/core/css/CSSStyleDeclarationTest.cpp
|
| @@ -19,7 +19,7 @@ TEST(CSSStyleDeclarationTest, getPropertyShorthand)
|
| helper.addCSSRules("div { padding: var(--p); }");
|
| ASSERT_TRUE(helper.cssRules());
|
| ASSERT_EQ(1u, helper.cssRules()->length());
|
| - ASSERT_EQ(CSSRule::STYLE_RULE, helper.cssRules()->item(0)->type());
|
| + ASSERT_EQ(CSSRule::kStyleRule, helper.cssRules()->item(0)->type());
|
| CSSStyleRule* styleRule = toCSSStyleRule(helper.cssRules()->item(0));
|
| CSSStyleDeclaration* style = styleRule->style();
|
| ASSERT_TRUE(style);
|
|
|