Index: Source/core/html/HTMLTableElement.cpp |
diff --git a/Source/core/html/HTMLTableElement.cpp b/Source/core/html/HTMLTableElement.cpp |
index cfb58fe075600b0a35a8713f50f638fb055ff86f..843895448f98339f6493e816aefa76147177bb95 100644 |
--- a/Source/core/html/HTMLTableElement.cpp |
+++ b/Source/core/html/HTMLTableElement.cpp |
@@ -181,6 +181,12 @@ HTMLTableSectionElement* HTMLTableElement::lastBody() const |
return 0; |
} |
+PassRefPtrWillBeRawPtr<HTMLElement> HTMLTableElement::insertRow(ExceptionState& exceptionState) |
+{ |
+ // The default 'index' argument value is -1. |
+ return insertRow(-1, exceptionState); |
+} |
+ |
PassRefPtrWillBeRawPtr<HTMLElement> HTMLTableElement::insertRow(int index, ExceptionState& exceptionState) |
{ |
if (index < -1) { |