File tree Expand file tree Collapse file tree 3 files changed +26
-8
lines changed Expand file tree Collapse file tree 3 files changed +26
-8
lines changed Original file line number Diff line number Diff line change @@ -2825,13 +2825,13 @@ interface CSSStyleDeclaration {
2825
2825
fillOpacity: string | null;
2826
2826
fillRule: string | null;
2827
2827
filter: string;
2828
- flex: string | null ;
2829
- flexBasis: string | null ;
2830
- flexDirection: string | null ;
2831
- flexFlow: string | null ;
2832
- flexGrow: string | null ;
2833
- flexShrink: string | null ;
2834
- flexWrap: string | null ;
2828
+ flex: string;
2829
+ flexBasis: string;
2830
+ flexDirection: string;
2831
+ flexFlow: string;
2832
+ flexGrow: string;
2833
+ flexShrink: string;
2834
+ flexWrap: string;
2835
2835
floodColor: string;
2836
2836
floodOpacity: string;
2837
2837
font: string;
@@ -2965,7 +2965,7 @@ interface CSSStyleDeclaration {
2965
2965
objectFit: string;
2966
2966
objectPosition: string;
2967
2967
opacity: string | null;
2968
- order: string | null ;
2968
+ order: string;
2969
2969
orphans: string | null;
2970
2970
outline: string;
2971
2971
outlineColor: string;
Original file line number Diff line number Diff line change
1
+ partial interface CSSStyleDeclaration {
2
+ [CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString flexDirection;
3
+ [CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString flexWrap;
4
+ [CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString flexFlow;
5
+ [CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString order;
6
+ [CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString flex;
7
+ [CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString flexGrow;
8
+ [CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString flexShrink;
9
+ [CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString flexBasis;
10
+ [CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString justifyContent;
11
+ [CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString alignItems;
12
+ [CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString alignSelf;
13
+ [CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString alignContent;
14
+ };
Original file line number Diff line number Diff line change 32
32
"url" : " https://www.w3.org/TR/css-align-3/" ,
33
33
"title" : " CSS Box Alignment"
34
34
},
35
+ {
36
+ "url" : " https://www.w3.org/TR/css-flexbox-1/" ,
37
+ "title" : " CSS Flexible Box Layout"
38
+ },
35
39
{
36
40
"url" : " https://www.w3.org/TR/css-fonts-3/" ,
37
41
"title" : " CSS Fonts"
You can’t perform that action at this time.
0 commit comments