Skip to content

Commit 4d745be

Browse files
saschanazsandersn
authored andcommitted
Add CSS Ruby Layout types (#761)
1 parent 1132a9e commit 4d745be

File tree

4 files changed

+13
-2
lines changed

4 files changed

+13
-2
lines changed

baselines/dom.generated.d.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -3042,9 +3042,9 @@ interface CSSStyleDeclaration {
30423042
right: string;
30433043
rotate: string;
30443044
rowGap: string;
3045-
rubyAlign: string | null;
3045+
rubyAlign: string;
30463046
rubyOverhang: string | null;
3047-
rubyPosition: string | null;
3047+
rubyPosition: string;
30483048
scale: string;
30493049
scrollBehavior: string;
30503050
shapeRendering: string;

inputfiles/idl/CSS Ruby Layout.widl

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
partial interface CSSStyleDeclaration {
2+
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString display;
3+
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString rubyPosition;
4+
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString rubyMerge;
5+
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString rubyAlign;
6+
};

inputfiles/idlSources.json

+4
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,10 @@
8484
"url": "https://www.w3.org/TR/css-overflow-3/",
8585
"title": "CSS Overflow"
8686
},
87+
{
88+
"url": "https://www.w3.org/TR/css-ruby-1/",
89+
"title": "CSS Ruby Layout"
90+
},
8791
{
8892
"url": "https://drafts.csswg.org/css-scroll-anchoring/",
8993
"title": "CSS Scroll Anchoring"

inputfiles/removedTypes.json

+1
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,7 @@
131131
"overflowInline": null,
132132
"paddingBlock": null,
133133
"paddingInline": null,
134+
"rubyMerge": null,
134135
"shapeInside": null,
135136
"shapeMargin": null,
136137
"shapeSubtract": null,

0 commit comments

Comments
 (0)