Skip to content

Add CSS Overflow types #714

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 3 commits into from
Jun 11, 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
7 changes: 4 additions & 3 deletions baselines/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2972,11 +2972,11 @@ interface CSSStyleDeclaration {
outlineOffset: string;
outlineStyle: string;
outlineWidth: string;
overflow: string | null;
overflow: string;
overflowAnchor: string;
overflowWrap: string;
overflowX: string | null;
overflowY: string | null;
overflowX: string;
overflowY: string;
padding: string | null;
paddingBottom: string | null;
paddingLeft: string | null;
Expand Down Expand Up @@ -3142,6 +3142,7 @@ interface CSSStyleDeclaration {
webkitFlexWrap: string;
/** @deprecated */
webkitJustifyContent: string;
webkitLineClamp: string;
/** @deprecated */
webkitMask: string;
/** @deprecated */
Expand Down
13 changes: 13 additions & 0 deletions inputfiles/idl/CSS Overflow.widl
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
partial interface CSSStyleDeclaration {
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString overflowX;
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString overflowY;
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString overflow;
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString overflowInline;
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString overflowBlock;
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString textOverflow;
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString blockOverflow;
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString lineClamp;
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString webkitLineClamp;
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString maxLines;
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString continue;
};
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://drafts.csswg.org/cssom-view/",
"title": "CSSOM View"
},
{
"url": "https://www.w3.org/TR/css-overflow-3/",
"title": "CSS Overflow"
},
{
"url": "https://drafts.csswg.org/css-scroll-anchoring/",
"title": "CSS Scroll Anchoring"
Expand Down
16 changes: 6 additions & 10 deletions inputfiles/removedTypes.json
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,9 @@
"properties": {
"property": {
"hangingPunctuation": null,
"blockOverflow": null,
"continue": null,
"lineClamp": null,
"maskBorder": null,
"maskBorderMode": null,
"maskBorderOutset": null,
Expand All @@ -79,6 +82,9 @@
"maskClip": null,
"maskMode": null,
"maskOrigin": null,
"maxLines": null,
"overflowBlock": null,
"overflowInline": null,
"textAlignAll": null
}
}
Expand Down Expand Up @@ -130,11 +136,6 @@
}
}
},
"SVGClipPathElement": {
"implements": [
"SVGUnitTypes"
]
},
"SVGElementInstance": {
"properties": {
"property": {
Expand Down Expand Up @@ -174,11 +175,6 @@
"SVGUnitTypes"
]
},
"SVGMaskElement": {
"implements": [
"SVGUnitTypes"
]
},
"SVGMatrix": null,
"SVGPatternElement": {
"implements": [
Expand Down