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

Unified Diff: third_party/WebKit/Source/modules/canvas2d/CanvasRenderingContext2DState.cpp

Issue 2065593002: Unprefix the CSS 'filter' property (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Adjust test 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/modules/canvas2d/CanvasRenderingContext2DState.cpp
diff --git a/third_party/WebKit/Source/modules/canvas2d/CanvasRenderingContext2DState.cpp b/third_party/WebKit/Source/modules/canvas2d/CanvasRenderingContext2DState.cpp
index d0f577801090780d3a4b7522134aadcdda8badb9..c36928e323431965cbc7fb4c70272e433a5f779f 100644
--- a/third_party/WebKit/Source/modules/canvas2d/CanvasRenderingContext2DState.cpp
+++ b/third_party/WebKit/Source/modules/canvas2d/CanvasRenderingContext2DState.cpp
@@ -305,7 +305,7 @@ SkImageFilter* CanvasRenderingContext2DState::getFilter(Element* styleResolution
StyleResolverState resolverState(styleResolutionHost->document(), styleResolutionHost, filterStyle.get());
resolverState.setStyle(filterStyle);
- StyleBuilder::applyProperty(CSSPropertyWebkitFilter, resolverState, *m_filterValue);
+ StyleBuilder::applyProperty(CSSPropertyFilter, resolverState, *m_filterValue);
resolverState.loadPendingResources();
FilterEffectBuilder* filterEffectBuilder = FilterEffectBuilder::create();

Powered by Google App Engine
This is Rietveld 408576698