| Index: Source/core/html/HTMLTableRowElement.cpp
|
| diff --git a/Source/core/html/HTMLTableRowElement.cpp b/Source/core/html/HTMLTableRowElement.cpp
|
| index e50eaf81f5af0800d6e1dbc9ef532436d1fd5fe0..7a1bd700332ec5c1d2681722802fb603caa85a13 100644
|
| --- a/Source/core/html/HTMLTableRowElement.cpp
|
| +++ b/Source/core/html/HTMLTableRowElement.cpp
|
| @@ -123,7 +123,7 @@ PassRefPtr<HTMLElement> HTMLTableRowElement::insertCell(int index, ExceptionStat
|
| RefPtr<HTMLCollection> children = cells();
|
| int numCells = children ? children->length() : 0;
|
| if (index < -1 || index > numCells) {
|
| - es.throwDOMException(IndexSizeError);
|
| + es.throwUninformativeAndGenericDOMException(IndexSizeError);
|
| return 0;
|
| }
|
|
|
| @@ -151,7 +151,7 @@ void HTMLTableRowElement::deleteCell(int index, ExceptionState& es)
|
| RefPtr<Node> cell = children->item(index);
|
| HTMLElement::removeChild(cell.get(), es);
|
| } else {
|
| - es.throwDOMException(IndexSizeError);
|
| + es.throwUninformativeAndGenericDOMException(IndexSizeError);
|
| }
|
| }
|
|
|
| @@ -162,7 +162,7 @@ PassRefPtr<HTMLCollection> HTMLTableRowElement::cells()
|
|
|
| void HTMLTableRowElement::setCells(HTMLCollection*, ExceptionState& es)
|
| {
|
| - es.throwDOMException(NoModificationAllowedError);
|
| + es.throwUninformativeAndGenericDOMException(NoModificationAllowedError);
|
| }
|
|
|
| }
|
|
|