Bug 1418085 part 5. Remove nsIDOMHTMLInputElement::GetList. r=mystor

MozReview-Commit-ID: JbWMti82q3R
This commit is contained in:
Boris Zbarsky
2018-01-30 00:25:36 -05:00
parent 7f63f7c999
commit 62c5e0df60
2 changed files with 3 additions and 18 deletions

View File

@@ -1887,20 +1887,6 @@ HTMLInputElement::GetList() const
return static_cast<nsGenericHTMLElement*>(element);
}
NS_IMETHODIMP
HTMLInputElement::GetList(nsIDOMHTMLElement** aValue)
{
*aValue = nullptr;
RefPtr<nsGenericHTMLElement> element = GetList();
if (!element) {
return NS_OK;
}
element.forget(aValue);
return NS_OK;
}
void
HTMLInputElement::SetValue(Decimal aValue, CallerType aCallerType)
{