| Index: third_party/WebKit/Source/core/html/HTMLTitleElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLTitleElement.cpp b/third_party/WebKit/Source/core/html/HTMLTitleElement.cpp
|
| index bd3ac995f9fa470b957cf5ae66bdb5c5c846272b..c20ddd1ba15c4b2108b8223358f21b0487963d85 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLTitleElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLTitleElement.cpp
|
| @@ -83,8 +83,10 @@ void HTMLTitleElement::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
|
|
|