1.1 --- a/css-overflow/Overview.bs Thu Apr 30 00:19:39 2015 +0200 1.2 +++ b/css-overflow/Overview.bs Thu Apr 30 00:24:54 2015 +0200 1.3 @@ -377,7 +377,7 @@ 1.4 1.5 <pre class=propdef> 1.6 Name: overflow-x, overflow-y 1.7 - Value: ''visible'' | ''hidden'' | ''clipped'' | ''scroll'' | ''auto'' 1.8 + Value: ''visible'' | ''hidden'' | ''clip'' | ''scroll'' | ''auto'' 1.9 Initial: ''visible'' 1.10 Applies to: block containers [[!CSS21]], flex containers [[!CSS3-FLEXBOX]], and grid containers [[!CSS3-GRID-LAYOUT]] 1.11 Inherited: no 1.12 @@ -396,7 +396,7 @@ 1.13 1.14 <pre class=propdef> 1.15 Name: overflow 1.16 - Value: ''visible'' | ''hidden'' | ''clipped'' | ''scroll'' | ''auto'' 1.17 + Value: ''visible'' | ''hidden'' | ''clip'' | ''scroll'' | ''auto'' 1.18 Initial: see individual properties 1.19 Applies to: block containers [[!CSS21]], flex containers [[!CSS3-FLEXBOX]], and grid containers [[!CSS3-GRID-LAYOUT]] 1.20 Inherited: no 1.21 @@ -439,7 +439,7 @@ 1.22 to view the content outside the clipping region. 1.23 However, the content may still be scrolled programatically, 1.24 for example using the mechanisms defined in [[CSSOM-VIEW]]. 1.25 - <dt><dfn>clipped</dfn> 1.26 + <dt><dfn>clip</dfn> 1.27 <dd>Like ''hidden'', 1.28 this value indicates that 1.29 the content is clipped 1.30 @@ -447,11 +447,11 @@ 1.31 to view the content outside the clipping region. 1.32 In addition, unlike ''overflow: hidden'' 1.33 which still allows programmatic scrolling, 1.34 - ''overflow: clipped'' forbids scrolling entirely, 1.35 + ''overflow: clip'' forbids scrolling entirely, 1.36 through any mechanism. 1.37 1.38 Issue: Mozilla implements -moz-hidden-unscrollable, 1.39 - which is similar to ''clipped'', 1.40 + which is similar to ''clip'', 1.41 except that it does not cause the element to establish a BFC. 1.42 Should we match that? 1.43 <dt><dfn>scroll</dfn>