| Index: third_party/WebKit/Source/core/svg/SVGTitleElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGTitleElement.cpp b/third_party/WebKit/Source/core/svg/SVGTitleElement.cpp
|
| index 1fa2b6f6fc743b3b957ce2534035f501e289364b..d9f93d160d3331849c54692970c1a834363ce655 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGTitleElement.cpp
|
| +++ b/third_party/WebKit/Source/core/svg/SVGTitleElement.cpp
|
| @@ -67,8 +67,10 @@ void SVGTitleElement::setText(const String& value) {
|
| removeChildren(OmitSubtreeModifiedEvent);
|
| }
|
|
|
| - if (!value.isEmpty())
|
| - appendChild(document().createTextNode(value.impl()), IGNORE_EXCEPTION);
|
| + if (!value.isEmpty()) {
|
| + appendChild(document().createTextNode(value.impl()),
|
| + IGNORE_EXCEPTION_FOR_TESTING);
|
| + }
|
| }
|
|
|
| } // namespace blink
|
|
|