Skip to content

Commit b041075

Browse files
saschanazsandersn
authored andcommitted
add CSS Fragmentation types (#726)
1 parent 64b71c1 commit b041075

File tree

4 files changed

+16
-4
lines changed

4 files changed

+16
-4
lines changed

baselines/dom.generated.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2806,9 +2806,9 @@ interface CSSStyleDeclaration {
28062806
bottom: string;
28072807
boxShadow: string;
28082808
boxSizing: string;
2809-
breakAfter: string | null;
2810-
breakBefore: string | null;
2811-
breakInside: string | null;
2809+
breakAfter: string;
2810+
breakBefore: string;
2811+
breakInside: string;
28122812
captionSide: string;
28132813
caretColor: string;
28142814
clear: string;

inputfiles/idl/CSS Fragmentation.widl

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
partial interface CSSStyleDeclaration {
2+
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString breakBefore;
3+
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString breakAfter;
4+
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString breakInside;
5+
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString orphans;
6+
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString widows;
7+
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString boxDecorationBreak;
8+
};

inputfiles/idlSources.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,10 @@
4444
"url": "https://www.w3.org/TR/css-fonts-3/",
4545
"title": "CSS Fonts"
4646
},
47+
{
48+
"url": "https://www.w3.org/TR/css-break-3/",
49+
"title": "CSS Fragmentation"
50+
},
4751
{
4852
"url": "https://www.w3.org/TR/css-grid-1/",
4953
"title": "CSS Grid Layout"

inputfiles/removedTypes.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@
8989
"borderLimit": null,
9090
"borderStartEndRadius": null,
9191
"borderStartStartRadius": null,
92-
"blockOverflow": null,
92+
"boxDecorationBreak": null,
9393
"continue": null,
9494
"cornerShape": null,
9595
"corners": null,

0 commit comments

Comments
 (0)