diff --git a/source b/source index 62613ddd55a..d5750a954bf 100644 --- a/source +++ b/source @@ -103908,17 +103908,6 @@ location.href = '#foo';

To update the initial scroll position for an element scroller, perform the following steps in parallel:

-

Although try to scroll to the fragment and - update the initial scroll positions for scroll containers take place at the same - point, and both use a polling system to prediodically re-attempt the scrolling, their goals are - different. Try to scroll to the fragment polls repeatedly until the - indicated part is found since it might take a while for the element to show up during - the document load. Update the initial scroll positions for scroll containers does not - have such a finish condition; it can run indefinitely, as long as the user does not indicate - disinterest. This is necessary to achieve the desired behavior of keeping a - scroll container anchored to the position indicated by CSS properties that determine - the initial scroll position.

-
  1. Wait for an implementation-defined amount of time. (This is intended to allow the user agent to optimize the user experience in the face of performance concerns.)

  2. @@ -103942,6 +103931,17 @@ location.href = '#foo'; as the associated element.

  3. Update the initial scroll position for scroller.

  4. + +

    Although try to scroll to the fragment and + update the initial scroll positions for scroll containers take place at the same + point, and both use a polling system to prediodically re-attempt the scrolling, their goals are + different. Try to scroll to the fragment polls repeatedly until the + indicated part is found since it might take a while for the element to show up during + the document load. Update the initial scroll positions for scroll containers does not + have such a finish condition; it can run indefinitely, as long as the user does not indicate + disinterest. This is necessary to achieve the desired behavior of keeping a + scroll container anchored to the position indicated by CSS properties that determine + the initial scroll position.