Skip to content

Add CSS Fragmentation types #726

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Sep 26, 2019
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