Chromium Code Reviews

Unified Diff: third_party/WebKit/Source/core/svg/SVGFETurbulenceElement.cpp

Issue 2128193004: Update FilterEffect colorspace on color-interpolation-filters changes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: third_party/WebKit/Source/core/svg/SVGFETurbulenceElement.cpp
diff --git a/third_party/WebKit/Source/core/svg/SVGFETurbulenceElement.cpp b/third_party/WebKit/Source/core/svg/SVGFETurbulenceElement.cpp
index 7e7db1ce61cbdeda3112dcf9af814722c77edfe1..23e44dac38c2b4a6f1d32bbc40d631506cf63b2d 100644
--- a/third_party/WebKit/Source/core/svg/SVGFETurbulenceElement.cpp
+++ b/third_party/WebKit/Source/core/svg/SVGFETurbulenceElement.cpp
@@ -89,8 +89,7 @@ bool SVGFETurbulenceElement::setFilterEffectAttribute(FilterEffect* effect, cons
if (attrName == SVGNames::numOctavesAttr)
return turbulence->setNumOctaves(m_numOctaves->currentValue()->value());
- ASSERT_NOT_REACHED();
- return false;
+ return SVGFilterPrimitiveStandardAttributes::setFilterEffectAttribute(effect, attrName);
}
void SVGFETurbulenceElement::svgAttributeChanged(const QualifiedName& attrName)

Powered by Google App Engine