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

Unified Diff: third_party/WebKit/Source/core/html/HTMLTableElement.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/HTMLTableElement.cpp
diff --git a/third_party/WebKit/Source/core/html/HTMLTableElement.cpp b/third_party/WebKit/Source/core/html/HTMLTableElement.cpp
index 5173d1558653957a8b905cca9dbee534e16a70f1..6ee41ac470281e5bfc61bc727aa91ed9e44f4ceb 100644
--- a/third_party/WebKit/Source/core/html/HTMLTableElement.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLTableElement.cpp
@@ -121,12 +121,12 @@ HTMLTableSectionElement* HTMLTableElement::createTHead() {
return existingHead;
HTMLTableSectionElement* head =
HTMLTableSectionElement::create(theadTag, document());
- setTHead(head, IGNORE_EXCEPTION);
+ setTHead(head, IGNORE_EXCEPTION_FOR_TESTING);
return head;
}
void HTMLTableElement::deleteTHead() {
- removeChild(tHead(), IGNORE_EXCEPTION);
+ removeChild(tHead(), IGNORE_EXCEPTION_FOR_TESTING);
}
HTMLTableSectionElement* HTMLTableElement::createTFoot() {
@@ -134,12 +134,12 @@ HTMLTableSectionElement* HTMLTableElement::createTFoot() {
return existingFoot;
HTMLTableSectionElement* foot =
HTMLTableSectionElement::create(tfootTag, document());
- setTFoot(foot, IGNORE_EXCEPTION);
+ setTFoot(foot, IGNORE_EXCEPTION_FOR_TESTING);
return foot;
}
void HTMLTableElement::deleteTFoot() {
- removeChild(tFoot(), IGNORE_EXCEPTION);
+ removeChild(tFoot(), IGNORE_EXCEPTION_FOR_TESTING);
}
HTMLTableSectionElement* HTMLTableElement::createTBody() {
@@ -156,12 +156,12 @@ HTMLTableCaptionElement* HTMLTableElement::createCaption() {
return existingCaption;
HTMLTableCaptionElement* caption =
HTMLTableCaptionElement::create(document());
- setCaption(caption, IGNORE_EXCEPTION);
+ setCaption(caption, IGNORE_EXCEPTION_FOR_TESTING);
return caption;
}
void HTMLTableElement::deleteCaption() {
- removeChild(caption(), IGNORE_EXCEPTION);
+ removeChild(caption(), IGNORE_EXCEPTION_FOR_TESTING);
}
HTMLTableSectionElement* HTMLTableElement::lastBody() const {
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLSelectElement.cpp ('k') | third_party/WebKit/Source/core/html/HTMLTextAreaElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698