| Index: third_party/WebKit/Source/core/html/HTMLTableSectionElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLTableSectionElement.cpp b/third_party/WebKit/Source/core/html/HTMLTableSectionElement.cpp
|
| index 3cc7c9fcdce94fb21859151549dab49a38cac80b..44b32325a84512f9bcc76e25f1d9c288f650ab36 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLTableSectionElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLTableSectionElement.cpp
|
| @@ -60,9 +60,9 @@ HTMLElement* HTMLTableSectionElement::insertRow(
|
| int numRows = children ? static_cast<int>(children->length()) : 0;
|
| if (index < -1 || index > numRows) {
|
| exceptionState.throwDOMException(
|
| - IndexSizeError, "The provided index (" + String::number(index) +
|
| - " is outside the range [-1, " +
|
| - String::number(numRows) + "].");
|
| + IndexSizeError,
|
| + "The provided index (" + String::number(index) +
|
| + " is outside the range [-1, " + String::number(numRows) + "].");
|
| return nullptr;
|
| }
|
|
|
| @@ -88,9 +88,9 @@ void HTMLTableSectionElement::deleteRow(int index,
|
| HTMLElement::removeChild(row, exceptionState);
|
| } else {
|
| exceptionState.throwDOMException(
|
| - IndexSizeError, "The provided index (" + String::number(index) +
|
| - " is outside the range [-1, " +
|
| - String::number(numRows) + "].");
|
| + IndexSizeError,
|
| + "The provided index (" + String::number(index) +
|
| + " is outside the range [-1, " + String::number(numRows) + "].");
|
| }
|
| }
|
|
|
|
|