File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2853,24 +2853,24 @@ interface CSSStyleDeclaration {
28532853 gap: string;
28542854 glyphOrientationHorizontal: string | null;
28552855 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;
28632863 gridColumnGap: string;
2864- gridColumnStart: string | null ;
2864+ gridColumnStart: string;
28652865 gridGap: string;
2866- gridRow: string | null ;
2867- gridRowEnd: string | null ;
2866+ gridRow: string;
2867+ gridRowEnd: string;
28682868 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;
28742874 height: string | null;
28752875 hyphens: string;
28762876 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 2828 "url" : " https://www.w3.org/TR/css-fonts-3/" ,
2929 "title" : " CSS Fonts"
3030 },
31+ {
32+ "url" : " https://www.w3.org/TR/css-grid-1/" ,
33+ "title" : " CSS Grid Layout"
34+ },
3135 {
3236 "url" : " https://drafts.csswg.org/css-images-3/" ,
3337 "title" : " CSS Images"
You can’t perform that action at this time.
0 commit comments