Skip to content

Commit fdc17c0

Browse files
Added CSS overscroll-behavior
1 parent 4a32410 commit fdc17c0

File tree

3 files changed

+16
-0
lines changed

3 files changed

+16
-0
lines changed

baselines/dom.generated.d.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3051,6 +3051,11 @@ interface CSSStyleDeclaration {
30513051
overflowWrap: string;
30523052
overflowX: string;
30533053
overflowY: string;
3054+
overscrollBehavior: string;
3055+
overscrollBehaviorBlock: string;
3056+
overscrollBehaviorInline: string;
3057+
overscrollBehaviorX: string;
3058+
overscrollBehaviorY: string;
30543059
padding: string;
30553060
paddingBlockEnd: string;
30563061
paddingBlockStart: string;
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
partial interface CSSStyleDeclaration {
2+
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString overscrollBehavior;
3+
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString overscrollBehaviorBlock;
4+
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString overscrollBehaviorInline;
5+
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString overscrollBehaviorX;
6+
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString overscrollBehaviorY;
7+
};

inputfiles/idlSources.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,10 @@
8484
"url": "https://www.w3.org/TR/css-overflow-3/",
8585
"title": "CSS Overflow"
8686
},
87+
{
88+
"url": "https://www.w3.org/TR/css-overscroll-1/",
89+
"title": "CSS Overscroll Behavior"
90+
},
8791
{
8892
"url": "https://www.w3.org/TR/css-ruby-1/",
8993
"title": "CSS Ruby Layout"

0 commit comments

Comments
 (0)