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

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

Issue 2065593002: Unprefix the CSS 'filter' property (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove disabler. Try different DCHECK expressions. Created 4 years, 6 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/DeferredLegacyStyleInterpolationTest.cpp
diff --git a/third_party/WebKit/Source/core/animation/DeferredLegacyStyleInterpolationTest.cpp b/third_party/WebKit/Source/core/animation/DeferredLegacyStyleInterpolationTest.cpp
index 110badd9e1b168298451f1d27fe4bcafbde37243..25cbd496b8127da01565060874c0f0c0c646b3a8 100644
--- a/third_party/WebKit/Source/core/animation/DeferredLegacyStyleInterpolationTest.cpp
+++ b/third_party/WebKit/Source/core/animation/DeferredLegacyStyleInterpolationTest.cpp
@@ -73,19 +73,19 @@ TEST_F(AnimationDeferredLegacyStyleInterpolationTest, Transform)
TEST_F(AnimationDeferredLegacyStyleInterpolationTest, Filter)
{
- EXPECT_FALSE(test(CSSPropertyWebkitFilter, "hue-rotate(180deg) blur(6px)"));
- EXPECT_FALSE(test(CSSPropertyWebkitFilter, "grayscale(0) blur(0px)"));
- EXPECT_FALSE(test(CSSPropertyWebkitFilter, "none"));
- EXPECT_FALSE(test(CSSPropertyWebkitFilter, "brightness(0) contrast(0)"));
- EXPECT_FALSE(test(CSSPropertyWebkitFilter, "drop-shadow(20px 10px green)"));
- EXPECT_TRUE(test(CSSPropertyWebkitFilter, "drop-shadow(20px 10vw green)"));
- EXPECT_TRUE(test(CSSPropertyWebkitFilter, "drop-shadow(0px 0px 0px currentcolor)"));
- EXPECT_FALSE(test(CSSPropertyWebkitFilter, "opacity(1)"));
- EXPECT_FALSE(test(CSSPropertyWebkitFilter, "saturate(0)"));
- EXPECT_FALSE(test(CSSPropertyWebkitFilter, "grayscale(1)"));
- EXPECT_FALSE(test(CSSPropertyWebkitFilter, "invert(1)"));
- EXPECT_FALSE(test(CSSPropertyWebkitFilter, "sepia(1)"));
- EXPECT_TRUE(test(CSSPropertyWebkitFilter, "url(#svgfilter)"));
+ EXPECT_FALSE(test(CSSPropertyFilter, "hue-rotate(180deg) blur(6px)"));
+ EXPECT_FALSE(test(CSSPropertyFilter, "grayscale(0) blur(0px)"));
+ EXPECT_FALSE(test(CSSPropertyFilter, "none"));
+ EXPECT_FALSE(test(CSSPropertyFilter, "brightness(0) contrast(0)"));
+ EXPECT_FALSE(test(CSSPropertyFilter, "drop-shadow(20px 10px green)"));
+ EXPECT_TRUE(test(CSSPropertyFilter, "drop-shadow(20px 10vw green)"));
+ EXPECT_TRUE(test(CSSPropertyFilter, "drop-shadow(0px 0px 0px currentcolor)"));
+ EXPECT_FALSE(test(CSSPropertyFilter, "opacity(1)"));
+ EXPECT_FALSE(test(CSSPropertyFilter, "saturate(0)"));
+ EXPECT_FALSE(test(CSSPropertyFilter, "grayscale(1)"));
+ EXPECT_FALSE(test(CSSPropertyFilter, "invert(1)"));
+ EXPECT_FALSE(test(CSSPropertyFilter, "sepia(1)"));
+ EXPECT_TRUE(test(CSSPropertyFilter, "url(#svgfilter)"));
}
TEST_F(AnimationDeferredLegacyStyleInterpolationTest, BackdropFilter)

Powered by Google App Engine
This is Rietveld 408576698