| Index: third_party/WebKit/Source/core/svg/SVGFEBlendElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGFEBlendElement.cpp b/third_party/WebKit/Source/core/svg/SVGFEBlendElement.cpp
|
| index 4c4f23cccae0412c6412a12191cb1fb4d95ebbeb..bb3063086d61bd8708fab7fe256ac8b0dbe98ebd 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGFEBlendElement.cpp
|
| +++ b/third_party/WebKit/Source/core/svg/SVGFEBlendElement.cpp
|
| @@ -152,7 +152,8 @@ FilterEffect* SVGFEBlendElement::build(SVGFilterBuilder* filterBuilder,
|
| AtomicString(m_in1->currentValue()->value()));
|
| FilterEffect* input2 = filterBuilder->getEffectById(
|
| AtomicString(m_in2->currentValue()->value()));
|
| - ASSERT(input1 && input2);
|
| + DCHECK(input1);
|
| + DCHECK(input2);
|
|
|
| FilterEffect* effect = FEBlend::create(
|
| filter, toWebBlendMode(m_mode->currentValue()->enumValue()));
|
|
|