Skip to content

Add CSS Inline Layout types #721

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 1 commit 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
8 changes: 4 additions & 4 deletions baselines/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2730,7 +2730,7 @@ interface CSSStyleDeclaration {
alignContent: string;
alignItems: string;
alignSelf: string;
alignmentBaseline: string | null;
alignmentBaseline: string;
animation: string;
animationDelay: string;
animationDirection: string;
Expand All @@ -2752,7 +2752,7 @@ interface CSSStyleDeclaration {
backgroundPositionY: string;
backgroundRepeat: string;
backgroundSize: string;
baselineShift: string | null;
baselineShift: string;
border: string;
borderBottom: string;
borderBottomColor: string;
Expand Down Expand Up @@ -2818,7 +2818,7 @@ interface CSSStyleDeclaration {
cursor: string;
direction: string;
display: string | null;
dominantBaseline: string | null;
dominantBaseline: string;
emptyCells: string | null;
enableBackground: string | null;
fill: string | null;
Expand Down Expand Up @@ -3051,7 +3051,7 @@ interface CSSStyleDeclaration {
translate: string | null;
unicodeBidi: string;
userSelect: string;
verticalAlign: string | null;
verticalAlign: string;
visibility: string | null;
/** @deprecated */
webkitAlignContent: string;
Expand Down
10 changes: 10 additions & 0 deletions inputfiles/idl/CSS Inline Layout.widl
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
partial interface CSSStyleDeclaration {
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString dominantBaseline;
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString verticalAlign;
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString alignmentBaseline;
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString baselineShift;
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString inlineSizing;
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString initialLetters;
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString initialLettersAlign;
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString initialLettersWrap;
};
4 changes: 4 additions & 0 deletions inputfiles/idlSources.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,10 @@
"url": "https://drafts.csswg.org/css-images-3/",
"title": "CSS Images"
},
{
"url": "https://www.w3.org/TR/css-inline-3/",
"title": "CSS Inline Layout"
},
{
"url": "https://drafts.fxtf.org/css-masking-1/",
"title": "CSS Masking"
Expand Down
4 changes: 4 additions & 0 deletions inputfiles/removedTypes.json
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,10 @@
"hangingPunctuation": null,
"blockOverflow": null,
"continue": null,
"initialLetters": null,
"initialLettersAlign": null,
"initialLettersWrap": null,
"inlineSizing": null,
"lineClamp": null,
"maskBorder": null,
"maskBorderMode": null,
Expand Down