Index: Source/core/html/HTMLTableSectionElement.cpp |
diff --git a/Source/core/html/HTMLTableSectionElement.cpp b/Source/core/html/HTMLTableSectionElement.cpp |
index 05207619e62485e3ec65dcfe36e34aca31d56535..3db10e2bd52c2cbce6662e850a9f0463f49ca337 100644 |
--- a/Source/core/html/HTMLTableSectionElement.cpp |
+++ b/Source/core/html/HTMLTableSectionElement.cpp |
@@ -87,7 +87,7 @@ void HTMLTableSectionElement::deleteRow(int index, ExceptionState& exceptionStat |
if (index == -1) |
index = numRows - 1; |
if (index >= 0 && index < numRows) { |
- RefPtr<Element> row = children->item(index); |
+ RefPtrWillBeRawPtr<Element> row = children->item(index); |
HTMLElement::removeChild(row.get(), exceptionState); |
} else { |
exceptionState.throwDOMException(IndexSizeError, "The provided index (" + String::number(index) + " is outside the range [-1, " + String::number(numRows) + "]."); |