| Index: third_party/WebKit/Source/core/svg/SVGFEDiffuseLightingElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGFEDiffuseLightingElement.cpp b/third_party/WebKit/Source/core/svg/SVGFEDiffuseLightingElement.cpp
|
| index 791b0c8ef4911905fa5eae52720cf55403469689..44764b2f2a9ff547625de3bdd74856d59254cdca 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGFEDiffuseLightingElement.cpp
|
| +++ b/third_party/WebKit/Source/core/svg/SVGFEDiffuseLightingElement.cpp
|
| @@ -122,9 +122,7 @@ void SVGFEDiffuseLightingElement::lightElementAttributeChanged(const SVGFELightE
|
| PassRefPtrWillBeRawPtr<FilterEffect> SVGFEDiffuseLightingElement::build(SVGFilterBuilder* filterBuilder, Filter* filter)
|
| {
|
| FilterEffect* input1 = filterBuilder->getEffectById(AtomicString(m_in1->currentValue()->value()));
|
| -
|
| - if (!input1)
|
| - return nullptr;
|
| + ASSERT(input1);
|
|
|
| LayoutObject* layoutObject = this->layoutObject();
|
| if (!layoutObject)
|
|
|