Bug 1459693 - Ensure the right anonymous element is focused when calling input.focus().

This commit is contained in:
Olli Pettay 2018-05-30 17:04:18 +03:00 committed by Roy Tam
commit 3dc461fc72

View file

@ -3546,7 +3546,8 @@ HTMLInputElement::Focus(ErrorResult& aError)
nsNumberControlFrame* numberControlFrame =
do_QueryFrame(GetPrimaryFrame());
if (numberControlFrame) {
HTMLInputElement* textControl = numberControlFrame->GetAnonTextControl();
RefPtr<HTMLInputElement> textControl =
numberControlFrame->GetAnonTextControl();
if (textControl) {
textControl->Focus(aError);
return;