Bug 1415677 part 1. Remove nsIDOMHTMLCollection::NamedItem. r=qdot

MozReview-Commit-ID: EppP6KSYSn6
This commit is contained in:
Boris Zbarsky
2017-11-13 10:38:59 -05:00
parent db2e23e95d
commit e76fe87c40
7 changed files with 0 additions and 93 deletions

View File

@@ -306,21 +306,6 @@ TableRowsCollection::GetSupportedNames(nsTArray<nsString>& aNames)
}
NS_IMETHODIMP
TableRowsCollection::NamedItem(const nsAString& aName,
nsIDOMNode** aReturn)
{
bool found;
nsISupports* node = GetFirstNamedElement(aName, found);
if (!node) {
*aReturn = nullptr;
return NS_OK;
}
return CallQueryInterface(node, aReturn);
}
NS_IMETHODIMP
TableRowsCollection::ParentDestroyed()
{