Skip to content

Commit 2988582

Browse files
authored
Merge pull request w3c#1 from vdjeric/master
Typo fixes
2 parents d9ec44a + 52d9529 commit 2988582

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
# Problem
55

6-
Scroll chaining is the process of propagating the scroll to the the nearest scrollable parent element once an scrollable reaches its limit. Scroll chaining is not always desirable. For example consider a fixed/absolute position scroller whose scroll should not chain to parent scroller i.e., the document. You can find this UX pattern used in most chat boxes that live at the bottom of the page such as in Facebook or Gmail UI.
6+
Scroll chaining is the process of propagating the scroll to the the nearest scrollable parent element once a scrollable reaches its limit. Scroll chaining is not always desirable. For example consider a fixed/absolute position scroller whose scroll should not chain to parent scroller, i.e. the document. You can find this UX pattern used in most chat boxes that live at the bottom of the page such as in Facebook or Gmail UI.
77

88
To give you a sense of how popular preventing scroll chaining may be, according to my quick http-archive search -ms-scroll-chaining: none is used in 0.4% of top 300K pages despite being limited in functionality and only supported on IE/Edge.
99

@@ -24,13 +24,13 @@ The property can also hint at the overscroll behavior that the browser should ta
2424

2525
The proposal for the syntax is:
2626
```
27-
croll-boundary-behavior{-x,-y}: auto | contain | none
27+
scroll-boundary-behavior{-x,-y}: auto | contain | none
2828
```
2929

3030
where:
31-
auto - Allow the default behavior for the user agent.
32-
contain - Hint to disable scroll chaining. The user agent may show an appropriate overscroll affordance. If the scroll chaining would trigger a non-scroll action, such as a navigation action, this property should be a hint to disable it.
33-
none - Same as contain but also hint that no overscroll affordance should be triggered.
31+
* auto - Allow the default behavior for the user agent.
32+
* contain - Hint to disable scroll chaining. The user agent may show an appropriate overscroll affordance. If the scroll chaining would trigger a non-scroll action, such as a navigation action, this property should be a hint to disable it.
33+
* none - Same as contain but also hint that no overscroll affordance should be triggered.
3434

3535
This should apply to all, non-programatic, user scroll actions.
3636

0 commit comments

Comments
 (0)