Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(62)

Unified Diff: third_party/WebKit/Source/core/html/HTMLTitleElement.cpp

Issue 2615953003: Rename IGNORE_EXCEPTION to IGNORE_EXCEPTION_FOR_TESTING (Closed)
Patch Set: temp Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLTextAreaElement.cpp ('k') | third_party/WebKit/Source/core/html/TimeRanges.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698