RCP: X.X, words not focused in editions
For some Windows and Internet Explorer, words focus does not work.
Currently the Element.scrollIntoViewIfNeeded function used is not supported by all browsers: https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollIntoViewIfNeeded
Solution 1
If Element.prototype.scrollIntoViewIfNeeded does not exist, implements it with a custom function.
Solution 2
If Element.prototype.scrollIntoViewIfNeeded does not exist, use Element.scrollIntoView
note: firefox uses element.scrollIntoView({behavior: “instant”, block: “end”, inline: “nearest”});
see other embedded browsers like https://github.com/equodev/chromium ?
(from redmine: issue id 2276, created on 2017/11/06 by Matthieu Decorde)