Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions baselines/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2806,9 +2806,9 @@ interface CSSStyleDeclaration {
bottom: string;
boxShadow: string;
boxSizing: string;
breakAfter: string | null;
breakBefore: string | null;
breakInside: string | null;
breakAfter: string;
breakBefore: string;
breakInside: string;
captionSide: string;
caretColor: string;
clear: string;
Expand Down
8 changes: 8 additions & 0 deletions inputfiles/idl/CSS Fragmentation.widl
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
partial interface CSSStyleDeclaration {
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString breakBefore;
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString breakAfter;
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString breakInside;
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString orphans;
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString widows;
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString boxDecorationBreak;
};
4 changes: 4 additions & 0 deletions inputfiles/idlSources.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,10 @@
"url": "https://www.w3.org/TR/css-fonts-3/",
"title": "CSS Fonts"
},
{
"url": "https://www.w3.org/TR/css-break-3/",
"title": "CSS Fragmentation"
},
{
"url": "https://www.w3.org/TR/css-grid-1/",
"title": "CSS Grid Layout"
Expand Down
2 changes: 1 addition & 1 deletion inputfiles/removedTypes.json
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
"borderLimit": null,
"borderStartEndRadius": null,
"borderStartStartRadius": null,
"blockOverflow": null,
"boxDecorationBreak": null,
"continue": null,
"cornerShape": null,
"corners": null,
Expand Down