Scroll-to-selected-item for ListSelect?

There’s a method on ComboBox called “setScrollToSelectedItem”. Is there a similar feature on ListSelect, or can I fake it?

(The use case: the user pushes a button to add a new item. The item is added to a list, at a location that may be off the screen. It would be nice to have it show up as visible to the user without them having to go look for it, since the list may be long [over 100 items]
.)

If the newly added item is also set as selected (e.g. via setValue call), the list box should automatically scroll so that the selected item is visible. Outside of that, as far as I know you really can’t scroll the ListSelect programmatically (even directly through Javascript) since it’s an HTML Select element which is handled by the browser.

Thanks, Teppo.