Skip to content

Commit 3404430

Browse files
authored
Merge pull request #646 from saschanaz/caret-color
Add CSS Basic User Interface types
2 parents 0a169d8 + fabea25 commit 3404430

File tree

3 files changed

+25
-8
lines changed

3 files changed

+25
-8
lines changed

baselines/dom.generated.d.ts

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2527,11 +2527,12 @@ interface CSSStyleDeclaration {
25272527
borderWidth: string | null;
25282528
bottom: string | null;
25292529
boxShadow: string | null;
2530-
boxSizing: string | null;
2530+
boxSizing: string;
25312531
breakAfter: string | null;
25322532
breakBefore: string | null;
25332533
breakInside: string | null;
25342534
captionSide: string | null;
2535+
caretColor: string;
25352536
clear: string | null;
25362537
clip: string | null;
25372538
clipPath: string | null;
@@ -2553,7 +2554,7 @@ interface CSSStyleDeclaration {
25532554
counterReset: string | null;
25542555
cssFloat: string | null;
25552556
cssText: string;
2556-
cursor: string | null;
2557+
cursor: string;
25572558
direction: string | null;
25582559
display: string | null;
25592560
dominantBaseline: string | null;
@@ -2692,11 +2693,11 @@ interface CSSStyleDeclaration {
26922693
opacity: string | null;
26932694
order: string | null;
26942695
orphans: string | null;
2695-
outline: string | null;
2696-
outlineColor: string | null;
2697-
outlineOffset: string | null;
2698-
outlineStyle: string | null;
2699-
outlineWidth: string | null;
2696+
outline: string;
2697+
outlineColor: string;
2698+
outlineOffset: string;
2699+
outlineStyle: string;
2700+
outlineWidth: string;
27002701
overflow: string | null;
27012702
overflowX: string | null;
27022703
overflowY: string | null;
@@ -2744,7 +2745,7 @@ interface CSSStyleDeclaration {
27442745
textJustify: string | null;
27452746
textKashida: string | null;
27462747
textKashidaSpace: string | null;
2747-
textOverflow: string | null;
2748+
textOverflow: string;
27482749
textShadow: string | null;
27492750
textTransform: string | null;
27502751
textUnderlinePosition: string | null;
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
partial interface CSSStyleDeclaration {
2+
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString boxSizing;
3+
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString outline;
4+
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString outlineWidth;
5+
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString outlineStyle;
6+
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString outlineColor;
7+
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString outlineOffset;
8+
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString resize;
9+
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString textOverflow;
10+
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString cursor;
11+
[CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString caretColor;
12+
};

inputfiles/idlSources.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@
1212
"url": "https://www.w3.org/TR/css-animations-1/",
1313
"title": "CSS Animations"
1414
},
15+
{
16+
"url": "https://www.w3.org/TR/css-ui-3/",
17+
"title": "CSS Basic User Interface"
18+
},
1519
{
1620
"url": "https://drafts.csswg.org/css-images-3/",
1721
"title": "CSS Images"

0 commit comments

Comments
 (0)