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

Unified Diff: third_party/WebKit/Source/core/style/SVGComputedStyleDefs.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/style/SVGComputedStyleDefs.cpp
diff --git a/third_party/WebKit/Source/core/style/SVGComputedStyleDefs.cpp b/third_party/WebKit/Source/core/style/SVGComputedStyleDefs.cpp
index 7a9d197d77bf09f22df89288591096fe1fcd911f..c07f35ea9d869f9156f100d28fe3f9f79ed428ce 100644
--- a/third_party/WebKit/Source/core/style/SVGComputedStyleDefs.cpp
+++ b/third_party/WebKit/Source/core/style/SVGComputedStyleDefs.cpp
@@ -158,7 +158,6 @@ bool StyleMiscData::operator==(const StyleMiscData& other) const
StyleResourceData::StyleResourceData()
: clipper(SVGComputedStyle::initialClipperResource())
- , filter(SVGComputedStyle::initialFilterResource())
, masker(SVGComputedStyle::initialMaskerResource())
{
}
@@ -166,7 +165,6 @@ StyleResourceData::StyleResourceData()
StyleResourceData::StyleResourceData(const StyleResourceData& other)
: RefCounted<StyleResourceData>()
, clipper(other.clipper)
- , filter(other.filter)
, masker(other.masker)
{
}
@@ -174,7 +172,6 @@ StyleResourceData::StyleResourceData(const StyleResourceData& other)
bool StyleResourceData::operator==(const StyleResourceData& other) const
{
return clipper == other.clipper
- && filter == other.filter
&& masker == other.masker;
}

Powered by Google App Engine
This is Rietveld 408576698