Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(91)

Unified Diff: third_party/WebKit/Source/core/css/CSSPageRuleTest.cpp

Issue 2068053002: Rename Blink constants generated from IDL files. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebKit/Source/core/css/CSSPageRule.h ('k') | third_party/WebKit/Source/core/css/CSSRule.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/css/CSSPageRuleTest.cpp
diff --git a/third_party/WebKit/Source/core/css/CSSPageRuleTest.cpp b/third_party/WebKit/Source/core/css/CSSPageRuleTest.cpp
index aaae3a4d9f0782a94be7b0d6dc5d2a0fea3d41f1..73c21940d60cbfbd3f83af1818e9666b245a2346 100644
--- a/third_party/WebKit/Source/core/css/CSSPageRuleTest.cpp
+++ b/third_party/WebKit/Source/core/css/CSSPageRuleTest.cpp
@@ -20,7 +20,7 @@ TEST(CSSPageRule, Serializing)
if (helper.cssRules()) {
EXPECT_EQ(1u, helper.cssRules()->length());
EXPECT_EQ(String(cssRule), helper.cssRules()->item(0)->cssText());
- EXPECT_EQ(CSSRule::PAGE_RULE, helper.cssRules()->item(0)->type());
+ EXPECT_EQ(CSSRule::kPageRule, helper.cssRules()->item(0)->type());
if (CSSPageRule* pageRule = toCSSPageRule(helper.cssRules()->item(0)))
EXPECT_EQ(":left", pageRule->selectorText());
}
« no previous file with comments | « third_party/WebKit/Source/core/css/CSSPageRule.h ('k') | third_party/WebKit/Source/core/css/CSSRule.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698