Skip to content

Commit ea6034a

Browse files
authored
feat: fetch spec list from browser-specs (microsoft#8)
1 parent b5463ad commit ea6034a

10 files changed

+506
-880
lines changed

baselines/dom.generated.d.ts

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2767,6 +2767,7 @@ interface CSSStyleDeclaration {
27672767
backfaceVisibility: string;
27682768
background: string;
27692769
backgroundAttachment: string;
2770+
backgroundBlendMode: string;
27702771
backgroundClip: string;
27712772
backgroundColor: string;
27722773
backgroundImage: string;
@@ -2848,8 +2849,10 @@ interface CSSStyleDeclaration {
28482849
clipPath: string;
28492850
clipRule: string;
28502851
color: string;
2852+
colorAdjust: string;
28512853
colorInterpolation: string;
28522854
colorInterpolationFilters: string;
2855+
colorScheme: string;
28532856
columnCount: string;
28542857
columnFill: string;
28552858
columnGap: string;
@@ -2860,6 +2863,7 @@ interface CSSStyleDeclaration {
28602863
columnSpan: string;
28612864
columnWidth: string;
28622865
columns: string;
2866+
contain: string;
28632867
content: string;
28642868
counterIncrement: string;
28652869
counterReset: string;
@@ -2934,6 +2938,7 @@ interface CSSStyleDeclaration {
29342938
insetInline: string;
29352939
insetInlineEnd: string;
29362940
insetInlineStart: string;
2941+
isolation: string;
29372942
justifyContent: string;
29382943
justifyItems: string;
29392944
justifySelf: string;
@@ -2972,8 +2977,14 @@ interface CSSStyleDeclaration {
29722977
minHeight: string;
29732978
minInlineSize: string;
29742979
minWidth: string;
2980+
mixBlendMode: string;
29752981
objectFit: string;
29762982
objectPosition: string;
2983+
offset: string;
2984+
offsetAnchor: string;
2985+
offsetDistance: string;
2986+
offsetPath: string;
2987+
offsetRotate: string;
29772988
opacity: string;
29782989
order: string;
29792990
orphans: string;
@@ -3023,7 +3034,32 @@ interface CSSStyleDeclaration {
30233034
rubyPosition: string;
30243035
scale: string;
30253036
scrollBehavior: string;
3037+
scrollMargin: string;
3038+
scrollMarginBlock: string;
3039+
scrollMarginBlockEnd: string;
3040+
scrollMarginBlockStart: string;
3041+
scrollMarginBottom: string;
3042+
scrollMarginInlineEnd: string;
3043+
scrollMarginInlineStart: string;
3044+
scrollMarginLeft: string;
3045+
scrollMarginRight: string;
3046+
scrollMarginTop: string;
3047+
scrollPadding: string;
3048+
scrollPaddingBlock: string;
3049+
scrollPaddingBlockEnd: string;
3050+
scrollPaddingBlockStart: string;
3051+
scrollPaddingBottom: string;
3052+
scrollPaddingInline: string;
3053+
scrollPaddingInlineEnd: string;
3054+
scrollPaddingInlineStart: string;
3055+
scrollPaddingLeft: string;
3056+
scrollPaddingRight: string;
3057+
scrollPaddingTop: string;
3058+
scrollSnapAlign: string;
3059+
scrollSnapType: string;
3060+
shapeImageThreshold: string;
30263061
shapeMargin: string;
3062+
shapeOutside: string;
30273063
shapeRendering: string;
30283064
stopColor: string;
30293065
stopOpacity: string;
@@ -3044,7 +3080,9 @@ interface CSSStyleDeclaration {
30443080
textDecoration: string;
30453081
textDecorationColor: string;
30463082
textDecorationLine: string;
3083+
textDecorationSkipInk: string;
30473084
textDecorationStyle: string;
3085+
textDecorationThickness: string;
30483086
textEmphasis: string;
30493087
textEmphasisColor: string;
30503088
textEmphasisPosition: string;
@@ -3055,6 +3093,7 @@ interface CSSStyleDeclaration {
30553093
textRendering: string;
30563094
textShadow: string;
30573095
textTransform: string;
3096+
textUnderlineOffset: string;
30583097
textUnderlinePosition: string;
30593098
top: string;
30603099
touchAction: string;

baselines/webworker.generated.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5821,7 +5821,6 @@ declare function importScripts(...urls: string[]): void;
58215821
* Dispatches a synthetic event event to target and returns true if either event's cancelable attribute value is false or its preventDefault() method was not invoked, and false otherwise.
58225822
*/
58235823
declare function dispatchEvent(event: Event): boolean;
5824-
declare var fonts: FontFaceSet;
58255824
declare var caches: CacheStorage;
58265825
declare var crypto: Crypto;
58275826
declare var indexedDB: IDBFactory;
@@ -5838,6 +5837,7 @@ declare function fetch(input: RequestInfo, init?: RequestInit): Promise<Response
58385837
declare function queueMicrotask(callback: VoidFunction): void;
58395838
declare function setInterval(handler: TimerHandler, timeout?: number, ...arguments: any[]): number;
58405839
declare function setTimeout(handler: TimerHandler, timeout?: number, ...arguments: any[]): number;
5840+
declare var fonts: FontFaceSet;
58415841
declare function cancelAnimationFrame(handle: number): void;
58425842
declare function requestAnimationFrame(callback: FrameRequestCallback): number;
58435843
declare function addEventListener<K extends keyof DedicatedWorkerGlobalScopeEventMap>(type: K, listener: (this: DedicatedWorkerGlobalScope, ev: DedicatedWorkerGlobalScopeEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;

0 commit comments

Comments
 (0)