| Index: Source/core/html/HTMLTableSectionElement.cpp
|
| diff --git a/Source/core/html/HTMLTableSectionElement.cpp b/Source/core/html/HTMLTableSectionElement.cpp
|
| index c84d6b99f8f5ea7605a2314517557f026e314f7a..65be6114663ccedbb7883fa15888bf1fef9cd227 100644
|
| --- a/Source/core/html/HTMLTableSectionElement.cpp
|
| +++ b/Source/core/html/HTMLTableSectionElement.cpp
|
| @@ -62,7 +62,7 @@ PassRefPtr<HTMLElement> HTMLTableSectionElement::insertRow(int index, ExceptionS
|
| RefPtr<HTMLCollection> children = rows();
|
| int numRows = children ? (int)children->length() : 0;
|
| if (index < -1 || index > numRows)
|
| - es.throwDOMException(IndexSizeError); // per the DOM
|
| + es.throwUninformativeAndGenericDOMException(IndexSizeError); // per the DOM
|
| else {
|
| row = HTMLTableRowElement::create(trTag, document());
|
| if (numRows == index || index == -1)
|
| @@ -89,7 +89,7 @@ void HTMLTableSectionElement::deleteRow(int index, ExceptionState& es)
|
| RefPtr<Node> row = children->item(index);
|
| HTMLElement::removeChild(row.get(), es);
|
| } else {
|
| - es.throwDOMException(IndexSizeError);
|
| + es.throwUninformativeAndGenericDOMException(IndexSizeError);
|
| }
|
| }
|
|
|
|
|