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

Unified Diff: third_party/WebKit/Source/core/animation/AnimationInputHelpersTest.cpp

Issue 1771733002: Web Animations: Use of hyphens is no longer supported (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Avoid Windows Release failure Created 4 years, 9 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
Index: third_party/WebKit/Source/core/animation/AnimationInputHelpersTest.cpp
diff --git a/third_party/WebKit/Source/core/animation/AnimationInputHelpersTest.cpp b/third_party/WebKit/Source/core/animation/AnimationInputHelpersTest.cpp
index 056476cd9cac73bc721de96ef5f09f6dd7163a3e..b7acdbdba4527e5e36f0f64c60e0fb58caa0d117 100644
--- a/third_party/WebKit/Source/core/animation/AnimationInputHelpersTest.cpp
+++ b/third_party/WebKit/Source/core/animation/AnimationInputHelpersTest.cpp
@@ -39,14 +39,14 @@ protected:
TEST_F(AnimationAnimationInputHelpersTest, ParseKeyframePropertyAttributes)
{
- EXPECT_EQ(CSSPropertyLineHeight, keyframeAttributeToCSSProperty("line-height"));
EXPECT_EQ(CSSPropertyLineHeight, keyframeAttributeToCSSProperty("lineHeight"));
EXPECT_EQ(CSSPropertyBorderTopWidth, keyframeAttributeToCSSProperty("borderTopWidth"));
- EXPECT_EQ(CSSPropertyBorderTopWidth, keyframeAttributeToCSSProperty("border-topWidth"));
EXPECT_EQ(CSSPropertyWidth, keyframeAttributeToCSSProperty("width"));
EXPECT_EQ(CSSPropertyFloat, keyframeAttributeToCSSProperty("float"));
EXPECT_EQ(CSSPropertyFloat, keyframeAttributeToCSSProperty("cssFloat"));
+ EXPECT_EQ(CSSPropertyInvalid, keyframeAttributeToCSSProperty("line-height"));
+ EXPECT_EQ(CSSPropertyInvalid, keyframeAttributeToCSSProperty("border-topWidth"));
EXPECT_EQ(CSSPropertyInvalid, keyframeAttributeToCSSProperty("Width"));
EXPECT_EQ(CSSPropertyInvalid, keyframeAttributeToCSSProperty("-epub-text-transform"));
EXPECT_EQ(CSSPropertyInvalid, keyframeAttributeToCSSProperty("EpubTextTransform"));

Powered by Google App Engine
This is Rietveld 408576698