Re: GWT custom scrollIntoView() implementation

2016-01-29 Thread Vassilis Virvilis
Thanks Jens, Thomas for the insight and sorry for the late reply So should I file a bug report? Or it is somehow taken care and it won't be forgotten? Jens: I didn't try older versions of chrome (only 47, 48). As I said it works in my simple pages but it fails in a complicated page that is

Re: GWT custom scrollIntoView() implementation

2016-01-29 Thread Thomas Broyer
On Friday, January 29, 2016 at 11:47:44 PM UTC+1, Vassilis Virvilis wrote: > > Thanks Jens, Thomas for the insight and sorry for the late reply > > So should I file a bug report? Or it is somehow taken care and it won't be > forgotten? > It's actually already tracked at

Re: GWT custom scrollIntoView() implementation

2016-01-26 Thread Thomas Broyer
The custom implementation was probably for Safari 3: https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollIntoView#Browser_compatibility It's no longer supported in GWT so we could switch to the native implementation nowadays. -- You received this message because you are subscribed

GWT custom scrollIntoView() implementation

2016-01-26 Thread Vassilis Virvilis
Hi, I was using scrollIntoView() when I hit the bug. In pages of mine GWT.scrollIntoView() is working in all major browsers. In a foreign page GWTscrollIntoView() fails (does nothing) in chrome. It however works in IE and firefox. Looking at the implementation I found a custom implementation

Re: GWT custom scrollIntoView() implementation

2016-01-26 Thread Juan Pablo Gardella
Hi Virviis, Could you file a bug and the fix? It will be great to include in gwt 2.8.0 Thanks On Tue, 26 Jan 2016 at 14:25 Vassilis Virvilis wrote: > Hi, > > I was using scrollIntoView() when I hit the bug. > > In pages of mine GWT.scrollIntoView() is working in all major

Re: GWT custom scrollIntoView() implementation

2016-01-26 Thread Vassilis Virvilis
Hi Juan, AFAIK GWT 2.8 will have jsinterop and elemental so the native scrollIntoView() will be used automatically. I don't have a problem to file a bug report in GWT but I thought I should ask first here about the reasoning of the current status. Submitting a patch looks considerably more

Re: GWT custom scrollIntoView() implementation

2016-01-26 Thread Jens
> AFAIK GWT 2.8 will have jsinterop and elemental so the native > scrollIntoView() will be used automatically. > Only if you use Elemental of course ;) I don't have a problem to file a bug report in GWT but I thought I should > ask first here about the reasoning of the current status. >