Skip to content

Commit 63e5fc7

Browse files
author
Orta
authored
Merge pull request #825 from MartinBlackburn/css-overscroll-behavior
Added CSS overscroll-behavior
2 parents 1ba0ad7 + fdc17c0 commit 63e5fc7

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
@@ -2958,6 +2958,11 @@ interface CSSStyleDeclaration {
29582958
overflowWrap: string;
29592959
overflowX: string;
29602960
overflowY: string;
2961+
overscrollBehavior: string;
2962+
overscrollBehaviorBlock: string;
2963+
overscrollBehaviorInline: string;
2964+
overscrollBehaviorX: string;
2965+
overscrollBehaviorY: string;
29612966
padding: string;
29622967
paddingBlockEnd: string;
29632968
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
@@ -104,6 +104,10 @@
104104
"url": "https://www.w3.org/TR/css-overflow-3/",
105105
"title": "CSS Overflow"
106106
},
107+
{
108+
"url": "https://www.w3.org/TR/css-overscroll-1/",
109+
"title": "CSS Overscroll Behavior"
110+
},
107111
{
108112
"url": "https://www.w3.org/TR/css-ruby-1/",
109113
"title": "CSS Ruby Layout"

0 commit comments

Comments
 (0)