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
25 changes: 14 additions & 11 deletions baselines/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2740,6 +2740,7 @@ interface CSSStyleDeclaration {
gridTemplateColumns: string | null;
gridTemplateRows: string | null;
height: string | null;
hyphens: string;
imageOrientation: string;
imageRendering: string;
imeMode: string | null;
Expand All @@ -2754,9 +2755,9 @@ interface CSSStyleDeclaration {
layoutGridType: string | null;
left: string | null;
readonly length: number;
letterSpacing: string | null;
letterSpacing: string;
lightingColor: string;
lineBreak: string | null;
lineBreak: string;
lineHeight: string | null;
listStyle: string | null;
listStyleImage: string | null;
Expand Down Expand Up @@ -2835,6 +2836,7 @@ interface CSSStyleDeclaration {
outlineStyle: string;
outlineWidth: string;
overflow: string | null;
overflowWrap: string;
overflowX: string | null;
overflowY: string | null;
padding: string | null;
Expand Down Expand Up @@ -2874,9 +2876,10 @@ interface CSSStyleDeclaration {
strokeMiterlimit: string | null;
strokeOpacity: string | null;
strokeWidth: string | null;
tabSize: string;
tableLayout: string | null;
textAlign: string | null;
textAlignLast: string | null;
textAlign: string;
textAlignLast: string;
textAnchor: string | null;
textCombineUpright: string;
textDecoration: string;
Expand All @@ -2887,14 +2890,14 @@ interface CSSStyleDeclaration {
textEmphasisColor: string;
textEmphasisPosition: string;
textEmphasisStyle: string;
textIndent: string | null;
textJustify: string | null;
textIndent: string;
textJustify: string;
textKashida: string | null;
textKashidaSpace: string | null;
textOrientation: string;
textOverflow: string;
textShadow: string;
textTransform: string | null;
textTransform: string;
textUnderlinePosition: string;
top: string | null;
touchAction: string;
Expand Down Expand Up @@ -3065,13 +3068,13 @@ interface CSSStyleDeclaration {
webkitUserModify: string | null;
webkitUserSelect: string | null;
webkitWritingMode: string | null;
whiteSpace: string | null;
whiteSpace: string;
widows: string | null;
width: string | null;
willChange: string;
wordBreak: string | null;
wordSpacing: string | null;
wordWrap: string | null;
wordBreak: string;
wordSpacing: string;
wordWrap: string;
writingMode: string;
zIndex: string | null;
zoom: string | null;
Expand Down
18 changes: 18 additions & 0 deletions inputfiles/idl/CSS Text.widl
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
partial interface CSSStyleDeclaration {
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString textTransform;
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString whiteSpace;
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString tabSize;
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString wordBreak;
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString lineBreak;
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString hyphens;
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString overflowWrap;
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString wordWrap;
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString textAlign;
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString textAlignAll;
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString textAlignLast;
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString textJustify;
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString wordSpacing;
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString letterSpacing;
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString textIndent;
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString hangingPunctuation;
};
4 changes: 4 additions & 0 deletions inputfiles/idlSources.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@
"url": "https://drafts.csswg.org/cssom-view/",
"title": "CSSOM View"
},
{
"url": "https://www.w3.org/TR/css-text-3/",
"title": "CSS Text"
},
{
"url": "https://www.w3.org/TR/css-text-decor-3/",
"title": "CSS Text Decoration"
Expand Down
8 changes: 8 additions & 0 deletions inputfiles/removedTypes.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,14 @@
}
}
},
"CSSStyleDeclaration": {
"properties": {
"property": {
"hangingPunctuation": null,
"textAlignAll": null
}
}
},
"DeviceMotionEvent": {
"methods": {
"method": {
Expand Down