File tree Expand file tree Collapse file tree 4 files changed +15
-3
lines changed Expand file tree Collapse file tree 4 files changed +15
-3
lines changed Original file line number Diff line number Diff line change @@ -2603,6 +2603,8 @@ interface CSSStyleDeclaration {
2603
2603
gridTemplateColumns: string | null;
2604
2604
gridTemplateRows: string | null;
2605
2605
height: string | null;
2606
+ imageOrientation: string;
2607
+ imageRendering: string;
2606
2608
imeMode: string | null;
2607
2609
justifyContent: string | null;
2608
2610
justifyItems: string | null;
@@ -2685,8 +2687,8 @@ interface CSSStyleDeclaration {
2685
2687
msWrapFlow: string;
2686
2688
msWrapMargin: any;
2687
2689
msWrapThrough: string;
2688
- objectFit: string | null ;
2689
- objectPosition: string | null ;
2690
+ objectFit: string;
2691
+ objectPosition: string;
2690
2692
opacity: string | null;
2691
2693
order: string | null;
2692
2694
orphans: string | null;
Original file line number Diff line number Diff line change
1
+ partial interface CSSStyleDeclaration {
2
+ [CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString objectFit;
3
+ [CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString objectPosition;
4
+ [CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString imageOrientation;
5
+ [CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString imageRendering;
6
+ };
Original file line number Diff line number Diff line change 12
12
"url" : " https://www.w3.org/TR/css-animations-1/" ,
13
13
"title" : " CSS Animations"
14
14
},
15
+ {
16
+ "url" : " https://drafts.csswg.org/css-images-3/" ,
17
+ "title" : " CSS Images"
18
+ },
15
19
{
16
20
"url" : " https://drafts.csswg.org/cssom-view/" ,
17
21
"title" : " CSSOM View"
Original file line number Diff line number Diff line change 3
3
"private" : true ,
4
4
"scripts" : {
5
5
"build" : " tsc --p ./tsconfig.json && node ./lib/index.js" ,
6
- "fetch-idl" : " npm run build && node ./lib/idlfetcher.js" ,
6
+ "fetch-idl" : " tsc --p ./tsconfig.json && node ./lib/idlfetcher.js" ,
7
7
"fetch-mdn" : " npm run build && node ./lib/mdnfetcher.js" ,
8
8
"fetch" : " echo This could take a few minutes... && npm run fetch-idl && npm run fetch-mdn" ,
9
9
"baseline-accept" : " cpx \" generated\\ *\" baselines\\ " ,
You can’t perform that action at this time.
0 commit comments