File tree Expand file tree Collapse file tree 3 files changed +36
-15
lines changed Expand file tree Collapse file tree 3 files changed +36
-15
lines changed Original file line number Diff line number Diff line change @@ -2853,24 +2853,24 @@ interface CSSStyleDeclaration {
2853
2853
gap: string;
2854
2854
glyphOrientationHorizontal: string | null;
2855
2855
glyphOrientationVertical: string;
2856
- grid: string | null ;
2857
- gridArea: string | null ;
2858
- gridAutoColumns: string | null ;
2859
- gridAutoFlow: string | null ;
2860
- gridAutoRows: string | null ;
2861
- gridColumn: string | null ;
2862
- gridColumnEnd: string | null ;
2856
+ grid: string;
2857
+ gridArea: string;
2858
+ gridAutoColumns: string;
2859
+ gridAutoFlow: string;
2860
+ gridAutoRows: string;
2861
+ gridColumn: string;
2862
+ gridColumnEnd: string;
2863
2863
gridColumnGap: string;
2864
- gridColumnStart: string | null ;
2864
+ gridColumnStart: string;
2865
2865
gridGap: string;
2866
- gridRow: string | null ;
2867
- gridRowEnd: string | null ;
2866
+ gridRow: string;
2867
+ gridRowEnd: string;
2868
2868
gridRowGap: string;
2869
- gridRowStart: string | null ;
2870
- gridTemplate: string | null ;
2871
- gridTemplateAreas: string | null ;
2872
- gridTemplateColumns: string | null ;
2873
- gridTemplateRows: string | null ;
2869
+ gridRowStart: string;
2870
+ gridTemplate: string;
2871
+ gridTemplateAreas: string;
2872
+ gridTemplateColumns: string;
2873
+ gridTemplateRows: string;
2874
2874
height: string | null;
2875
2875
hyphens: string;
2876
2876
imageOrientation: string;
Original file line number Diff line number Diff line change
1
+ partial interface CSSStyleDeclaration {
2
+ [CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString gridTemplateColumns;
3
+ [CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString gridTemplateRows;
4
+ [CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString gridTemplateAreas;
5
+ [CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString gridTemplate;
6
+ [CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString gridAutoColumns;
7
+ [CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString gridAutoRows;
8
+ [CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString gridAutoFlow;
9
+ [CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString grid;
10
+ [CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString gridRowStart;
11
+ [CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString gridColumnStart;
12
+ [CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString gridRowEnd;
13
+ [CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString gridColumnEnd;
14
+ [CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString gridRow;
15
+ [CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString gridColumn;
16
+ [CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString gridArea;
17
+ };
Original file line number Diff line number Diff line change 28
28
"url" : " https://www.w3.org/TR/css-fonts-3/" ,
29
29
"title" : " CSS Fonts"
30
30
},
31
+ {
32
+ "url" : " https://www.w3.org/TR/css-grid-1/" ,
33
+ "title" : " CSS Grid Layout"
34
+ },
31
35
{
32
36
"url" : " https://drafts.csswg.org/css-images-3/" ,
33
37
"title" : " CSS Images"
You can’t perform that action at this time.
0 commit comments