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

Unified Diff: third_party/WebKit/Source/core/animation/FilterListPropertyFunctions.h

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/FilterListPropertyFunctions.h
diff --git a/third_party/WebKit/Source/core/animation/FilterListPropertyFunctions.h b/third_party/WebKit/Source/core/animation/FilterListPropertyFunctions.h
index a5c61e8a4105b5a97b6f94be9bee22408b61d2df..c65044e6fd484416826d017f1b38f88e006c58fb 100644
--- a/third_party/WebKit/Source/core/animation/FilterListPropertyFunctions.h
+++ b/third_party/WebKit/Source/core/animation/FilterListPropertyFunctions.h
@@ -27,7 +27,7 @@ public:
// Fall through.
case CSSPropertyBackdropFilter:
return style.backdropFilter();
- case CSSPropertyWebkitFilter:
+ case CSSPropertyFilter:
return style.filter();
}
}
@@ -38,7 +38,7 @@ public:
case CSSPropertyBackdropFilter:
style.setBackdropFilter(filterOperations);
break;
- case CSSPropertyWebkitFilter:
+ case CSSPropertyFilter:
style.setFilter(filterOperations);
break;
default:

Powered by Google App Engine
This is Rietveld 408576698