Bug 179735 - window.scrollTo is initially unclamped on iOS
Summary: window.scrollTo is initially unclamped on iOS
Status: NEW
Alias: None
Product: WebKit
Classification: Unclassified
Component: DOM (show other bugs)
Version: WebKit Nightly Build
Hardware: Unspecified Unspecified
: P2 Normal
Assignee: Nobody
URL:
Keywords: InRadar
Depends on:
Blocks:
 
Reported: 2017-11-15 10:30 PST by Ali Juma
Modified: 2020-10-30 14:39 PDT (History)
7 users (show)

See Also:


Attachments
Test case (337 bytes, text/html)
2017-11-15 11:48 PST, Ali Juma
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description Ali Juma 2017-11-15 10:30:10 PST
The inputs to window.scrollTo aren't clamped to the min/max scroll positions by WebCore when ScrollView::delegatesScrolling is true, so window.scrollX and window.scrollY return possibly out-of-bounds values until WebCore receives adjusted values from the UI process. For example:

window.scrollTo(0, 1000000);
var scrollPos = window.scrollY;
// scrollPos is 1000000 even if the page is much smaller than that

window.scrollTo(-100, 0);
scrollPos = window.scrollX;
// scrollPos is -100 even though that's not a valid scroll offset

This behavior comes from the patch for bug 132879, which stopped clamping in ScrollView::setScrollPosition with the justification that the Web process shouldn't be clamping since it might have stale information.

I wonder if a better approach might be to continue sending an unclamped scroll offset to the UI process, but in the meanwhile use a clamped scroll offset to update FrameView's scroll position. That would mean changing AsyncScrollingCoordinator::requestScrollPositionUpdate to take both a clamped and an unclamped offset, so that it can use the clamped version for the call to updateScrollPositionAfterAsyncScroll (which is what updates FrameView's scroll offset).
Comment 1 Simon Fraser (smfr) 2017-11-15 10:48:45 PST
Can you attach a testcase that shows the incorrect behavior?
Comment 2 Ali Juma 2017-11-15 11:48:09 PST
Created attachment 327004 [details]
Test case

Here's a test page that tries to scroll to an out-of-bounds offset and then outputs the values of scrollX and scrollY.
Comment 3 Frédéric Wang (:fredw) 2018-02-13 23:07:26 PST
(In reply to Ali Juma from comment #0)
> I wonder if a better approach might be to continue sending an unclamped
> scroll offset to the UI process, but in the meanwhile use a clamped scroll
> offset to update FrameView's scroll position. That would mean changing
> AsyncScrollingCoordinator::requestScrollPositionUpdate to take both a
> clamped and an unclamped offset, so that it can use the clamped version for
> the call to updateScrollPositionAfterAsyncScroll (which is what updates
> FrameView's scroll offset).

@Ali: How about just putting back the clamping for programmatic scroll? i.e.

-    ScrollPosition newScrollPosition = !delegatesScrolling() ? adjustScrollPositionWithinRange(scrollPosition) : scrollPosition;
+    ScrollPosition newScrollPosition = (!delegatesScrolling() || inProgrammaticScroll()) ? adjustScrollPositionWithinRange(scrollPosition) : scrollPosition;

What would be the problem if programmatically-set position overrides the one in the UI process?
Comment 4 Ali Juma 2018-02-14 06:28:53 PST
(In reply to Frédéric Wang (:fredw) from comment #3)
> (In reply to Ali Juma from comment #0)
> > I wonder if a better approach might be to continue sending an unclamped
> > scroll offset to the UI process, but in the meanwhile use a clamped scroll
> > offset to update FrameView's scroll position. That would mean changing
> > AsyncScrollingCoordinator::requestScrollPositionUpdate to take both a
> > clamped and an unclamped offset, so that it can use the clamped version for
> > the call to updateScrollPositionAfterAsyncScroll (which is what updates
> > FrameView's scroll offset).
> 
> @Ali: How about just putting back the clamping for programmatic scroll? i.e.
> 
> -    ScrollPosition newScrollPosition = !delegatesScrolling() ?
> adjustScrollPositionWithinRange(scrollPosition) : scrollPosition;
> +    ScrollPosition newScrollPosition = (!delegatesScrolling() ||
> inProgrammaticScroll()) ? adjustScrollPositionWithinRange(scrollPosition) :
> scrollPosition;
> 
> What would be the problem if programmatically-set position overrides the one
> in the UI process?

The problem would be that the WebProcess may not have up-to-date information about the size of the view, so we might clamp incorrectly. For example, the view might have shrunk, increasing the maximum scroll offset. I think you're right that for JS-driven scroll, we're fine to clamp since JS can't make assumptions about when resize happens in the UI, but I'm not sure that extends to all programmatic scrolls, since inProgrammticScroll() seems to be broader than just JS-driven scroll. The use case in the bug that removed the clamping (bug 132879) sounds like a programmatic scroll.
Comment 5 Radar WebKit Bug Importer 2020-10-30 14:39:47 PDT
<rdar://problem/70897654>