Closed
Description
The IDL of Element partial interface defines scrollIntoView receives boolean
or object
. Can the IDL be more specific and directly refer ScrollIntoViewOptions as other scroll methods do?
void scrollIntoView();
void scrollIntoView((boolean or object) arg);
void scroll(optional ScrollToOptions options);
void scroll(unrestricted double x, unrestricted double y);
void scrollTo(optional ScrollToOptions options);
void scrollTo(unrestricted double x, unrestricted double y);
void scrollBy(optional ScrollToOptions options);
void scrollBy(unrestricted double x, unrestricted double y);