Skip to content

Commit cef584b

Browse files
authored
Update core dependencies (#1407)
Co-authored-by: saschanaz <[email protected]>
1 parent 5712b44 commit cef584b

12 files changed

+225
-129
lines changed

baselines/dom.generated.d.ts

Lines changed: 37 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2182,7 +2182,7 @@ declare var AnimationPlaybackEvent: {
21822182
};
21832183

21842184
interface AnimationTimeline {
2185-
readonly currentTime: number | null;
2185+
readonly currentTime: CSSNumberish | null;
21862186
}
21872187

21882188
declare var AnimationTimeline: {
@@ -2435,6 +2435,8 @@ declare var AuthenticatorAssertionResponse: {
24352435
interface AuthenticatorAttestationResponse extends AuthenticatorResponse {
24362436
readonly attestationObject: ArrayBuffer;
24372437
getAuthenticatorData(): ArrayBuffer;
2438+
getPublicKey(): ArrayBuffer | null;
2439+
getPublicKeyAlgorithm(): COSEAlgorithmIdentifier;
24382440
getTransports(): string[];
24392441
}
24402442

@@ -2634,6 +2636,14 @@ declare var CSSConditionRule: {
26342636
new(): CSSConditionRule;
26352637
};
26362638

2639+
interface CSSContainerRule extends CSSConditionRule {
2640+
}
2641+
2642+
declare var CSSContainerRule: {
2643+
prototype: CSSContainerRule;
2644+
new(): CSSContainerRule;
2645+
};
2646+
26372647
interface CSSCounterStyleRule extends CSSRule {
26382648
additiveSymbols: string;
26392649
fallback: string;
@@ -2943,6 +2953,9 @@ interface CSSStyleDeclaration {
29432953
columnWidth: string;
29442954
columns: string;
29452955
contain: string;
2956+
container: string;
2957+
containerName: string;
2958+
containerType: string;
29462959
content: string;
29472960
counterIncrement: string;
29482961
counterReset: string;
@@ -3011,6 +3024,7 @@ interface CSSStyleDeclaration {
30113024
gridTemplateColumns: string;
30123025
gridTemplateRows: string;
30133026
height: string;
3027+
hyphenateCharacter: string;
30143028
hyphens: string;
30153029
/** @deprecated */
30163030
imageOrientation: string;
@@ -3544,6 +3558,7 @@ interface CanvasPath {
35443558
moveTo(x: number, y: number): void;
35453559
quadraticCurveTo(cpx: number, cpy: number, x: number, y: number): void;
35463560
rect(x: number, y: number, w: number, h: number): void;
3561+
roundRect(x: number, y: number, w: number, h: number, radii?: number | DOMPointInit | (number | DOMPointInit)[]): void;
35473562
}
35483563

35493564
interface CanvasPathDrawingStyles {
@@ -4950,6 +4965,17 @@ interface EXT_texture_filter_anisotropic {
49504965
readonly TEXTURE_MAX_ANISOTROPY_EXT: GLenum;
49514966
}
49524967

4968+
interface EXT_texture_norm16 {
4969+
readonly R16_EXT: GLenum;
4970+
readonly R16_SNORM_EXT: GLenum;
4971+
readonly RG16_EXT: GLenum;
4972+
readonly RG16_SNORM_EXT: GLenum;
4973+
readonly RGB16_EXT: GLenum;
4974+
readonly RGB16_SNORM_EXT: GLenum;
4975+
readonly RGBA16_EXT: GLenum;
4976+
readonly RGBA16_SNORM_EXT: GLenum;
4977+
}
4978+
49534979
interface ElementEventMap {
49544980
"fullscreenchange": Event;
49554981
"fullscreenerror": Event;
@@ -10239,6 +10265,16 @@ declare var Notification: {
1023910265
requestPermission(deprecatedCallback?: NotificationPermissionCallback): Promise<NotificationPermission>;
1024010266
};
1024110267

10268+
interface OES_draw_buffers_indexed {
10269+
blendEquationSeparateiOES(buf: GLuint, modeRGB: GLenum, modeAlpha: GLenum): void;
10270+
blendEquationiOES(buf: GLuint, mode: GLenum): void;
10271+
blendFuncSeparateiOES(buf: GLuint, srcRGB: GLenum, dstRGB: GLenum, srcAlpha: GLenum, dstAlpha: GLenum): void;
10272+
blendFunciOES(buf: GLuint, src: GLenum, dst: GLenum): void;
10273+
colorMaskiOES(buf: GLuint, r: GLboolean, g: GLboolean, b: GLboolean, a: GLboolean): void;
10274+
disableiOES(target: GLenum, index: GLuint): void;
10275+
enableiOES(target: GLenum, index: GLuint): void;
10276+
}
10277+
1024210278
/** The OES_element_index_uint extension is part of the WebGL API and adds support for gl.UNSIGNED_INT types to WebGLRenderingContext.drawElements(). */
1024310279
interface OES_element_index_uint {
1024410280
}

baselines/dom.iterable.generated.d.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@ interface Cache {
2626
addAll(requests: Iterable<RequestInfo>): Promise<void>;
2727
}
2828

29+
interface CanvasPath {
30+
roundRect(x: number, y: number, w: number, h: number, radii?: number | DOMPointInit | Iterable<number | DOMPointInit>): void;
31+
}
32+
2933
interface CanvasPathDrawingStyles {
3034
setLineDash(segments: Iterable<number>): void;
3135
}

baselines/serviceworker.generated.d.ts

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -869,6 +869,7 @@ interface CanvasPath {
869869
moveTo(x: number, y: number): void;
870870
quadraticCurveTo(cpx: number, cpy: number, x: number, y: number): void;
871871
rect(x: number, y: number, w: number, h: number): void;
872+
roundRect(x: number, y: number, w: number, h: number, radii?: number | DOMPointInit | (number | DOMPointInit)[]): void;
872873
}
873874

874875
/** An opaque object describing a pattern, based on an image, a canvas, or a video, created by the CanvasRenderingContext2D.createPattern() method. */
@@ -1281,6 +1282,17 @@ interface EXT_texture_filter_anisotropic {
12811282
readonly TEXTURE_MAX_ANISOTROPY_EXT: GLenum;
12821283
}
12831284

1285+
interface EXT_texture_norm16 {
1286+
readonly R16_EXT: GLenum;
1287+
readonly R16_SNORM_EXT: GLenum;
1288+
readonly RG16_EXT: GLenum;
1289+
readonly RG16_SNORM_EXT: GLenum;
1290+
readonly RGB16_EXT: GLenum;
1291+
readonly RGB16_SNORM_EXT: GLenum;
1292+
readonly RGBA16_EXT: GLenum;
1293+
readonly RGBA16_SNORM_EXT: GLenum;
1294+
}
1295+
12841296
/** Events providing information related to errors in scripts or in files. */
12851297
interface ErrorEvent extends Event {
12861298
readonly colno: number;
@@ -2301,6 +2313,16 @@ declare var NotificationEvent: {
23012313
new(type: string, eventInitDict: NotificationEventInit): NotificationEvent;
23022314
};
23032315

2316+
interface OES_draw_buffers_indexed {
2317+
blendEquationSeparateiOES(buf: GLuint, modeRGB: GLenum, modeAlpha: GLenum): void;
2318+
blendEquationiOES(buf: GLuint, mode: GLenum): void;
2319+
blendFuncSeparateiOES(buf: GLuint, srcRGB: GLenum, dstRGB: GLenum, srcAlpha: GLenum, dstAlpha: GLenum): void;
2320+
blendFunciOES(buf: GLuint, src: GLenum, dst: GLenum): void;
2321+
colorMaskiOES(buf: GLuint, r: GLboolean, g: GLboolean, b: GLboolean, a: GLboolean): void;
2322+
disableiOES(target: GLenum, index: GLuint): void;
2323+
enableiOES(target: GLenum, index: GLuint): void;
2324+
}
2325+
23042326
/** The OES_element_index_uint extension is part of the WebGL API and adds support for gl.UNSIGNED_INT types to WebGLRenderingContext.drawElements(). */
23052327
interface OES_element_index_uint {
23062328
}

baselines/serviceworker.iterable.generated.d.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ interface Cache {
66
addAll(requests: Iterable<RequestInfo>): Promise<void>;
77
}
88

9+
interface CanvasPath {
10+
roundRect(x: number, y: number, w: number, h: number, radii?: number | DOMPointInit | Iterable<number | DOMPointInit>): void;
11+
}
12+
913
interface DOMStringList {
1014
[Symbol.iterator](): IterableIterator<string>;
1115
}

baselines/sharedworker.generated.d.ts

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -841,6 +841,7 @@ interface CanvasPath {
841841
moveTo(x: number, y: number): void;
842842
quadraticCurveTo(cpx: number, cpy: number, x: number, y: number): void;
843843
rect(x: number, y: number, w: number, h: number): void;
844+
roundRect(x: number, y: number, w: number, h: number, radii?: number | DOMPointInit | (number | DOMPointInit)[]): void;
844845
}
845846

846847
/** An opaque object describing a pattern, based on an image, a canvas, or a video, created by the CanvasRenderingContext2D.createPattern() method. */
@@ -1225,6 +1226,17 @@ interface EXT_texture_filter_anisotropic {
12251226
readonly TEXTURE_MAX_ANISOTROPY_EXT: GLenum;
12261227
}
12271228

1229+
interface EXT_texture_norm16 {
1230+
readonly R16_EXT: GLenum;
1231+
readonly R16_SNORM_EXT: GLenum;
1232+
readonly RG16_EXT: GLenum;
1233+
readonly RG16_SNORM_EXT: GLenum;
1234+
readonly RGB16_EXT: GLenum;
1235+
readonly RGB16_SNORM_EXT: GLenum;
1236+
readonly RGBA16_EXT: GLenum;
1237+
readonly RGBA16_SNORM_EXT: GLenum;
1238+
}
1239+
12281240
/** Events providing information related to errors in scripts or in files. */
12291241
interface ErrorEvent extends Event {
12301242
readonly colno: number;
@@ -2209,6 +2221,16 @@ declare var Notification: {
22092221
readonly permission: NotificationPermission;
22102222
};
22112223

2224+
interface OES_draw_buffers_indexed {
2225+
blendEquationSeparateiOES(buf: GLuint, modeRGB: GLenum, modeAlpha: GLenum): void;
2226+
blendEquationiOES(buf: GLuint, mode: GLenum): void;
2227+
blendFuncSeparateiOES(buf: GLuint, srcRGB: GLenum, dstRGB: GLenum, srcAlpha: GLenum, dstAlpha: GLenum): void;
2228+
blendFunciOES(buf: GLuint, src: GLenum, dst: GLenum): void;
2229+
colorMaskiOES(buf: GLuint, r: GLboolean, g: GLboolean, b: GLboolean, a: GLboolean): void;
2230+
disableiOES(target: GLenum, index: GLuint): void;
2231+
enableiOES(target: GLenum, index: GLuint): void;
2232+
}
2233+
22122234
/** The OES_element_index_uint extension is part of the WebGL API and adds support for gl.UNSIGNED_INT types to WebGLRenderingContext.drawElements(). */
22132235
interface OES_element_index_uint {
22142236
}

baselines/sharedworker.iterable.generated.d.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ interface Cache {
66
addAll(requests: Iterable<RequestInfo>): Promise<void>;
77
}
88

9+
interface CanvasPath {
10+
roundRect(x: number, y: number, w: number, h: number, radii?: number | DOMPointInit | Iterable<number | DOMPointInit>): void;
11+
}
12+
913
interface DOMStringList {
1014
[Symbol.iterator](): IterableIterator<string>;
1115
}

baselines/webworker.generated.d.ts

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -903,6 +903,7 @@ interface CanvasPath {
903903
moveTo(x: number, y: number): void;
904904
quadraticCurveTo(cpx: number, cpy: number, x: number, y: number): void;
905905
rect(x: number, y: number, w: number, h: number): void;
906+
roundRect(x: number, y: number, w: number, h: number, radii?: number | DOMPointInit | (number | DOMPointInit)[]): void;
906907
}
907908

908909
/** An opaque object describing a pattern, based on an image, a canvas, or a video, created by the CanvasRenderingContext2D.createPattern() method. */
@@ -1342,6 +1343,17 @@ interface EXT_texture_filter_anisotropic {
13421343
readonly TEXTURE_MAX_ANISOTROPY_EXT: GLenum;
13431344
}
13441345

1346+
interface EXT_texture_norm16 {
1347+
readonly R16_EXT: GLenum;
1348+
readonly R16_SNORM_EXT: GLenum;
1349+
readonly RG16_EXT: GLenum;
1350+
readonly RG16_SNORM_EXT: GLenum;
1351+
readonly RGB16_EXT: GLenum;
1352+
readonly RGB16_SNORM_EXT: GLenum;
1353+
readonly RGBA16_EXT: GLenum;
1354+
readonly RGBA16_SNORM_EXT: GLenum;
1355+
}
1356+
13451357
/** Events providing information related to errors in scripts or in files. */
13461358
interface ErrorEvent extends Event {
13471359
readonly colno: number;
@@ -2376,6 +2388,16 @@ declare var NotificationEvent: {
23762388
new(type: string, eventInitDict: NotificationEventInit): NotificationEvent;
23772389
};
23782390

2391+
interface OES_draw_buffers_indexed {
2392+
blendEquationSeparateiOES(buf: GLuint, modeRGB: GLenum, modeAlpha: GLenum): void;
2393+
blendEquationiOES(buf: GLuint, mode: GLenum): void;
2394+
blendFuncSeparateiOES(buf: GLuint, srcRGB: GLenum, dstRGB: GLenum, srcAlpha: GLenum, dstAlpha: GLenum): void;
2395+
blendFunciOES(buf: GLuint, src: GLenum, dst: GLenum): void;
2396+
colorMaskiOES(buf: GLuint, r: GLboolean, g: GLboolean, b: GLboolean, a: GLboolean): void;
2397+
disableiOES(target: GLenum, index: GLuint): void;
2398+
enableiOES(target: GLenum, index: GLuint): void;
2399+
}
2400+
23792401
/** The OES_element_index_uint extension is part of the WebGL API and adds support for gl.UNSIGNED_INT types to WebGLRenderingContext.drawElements(). */
23802402
interface OES_element_index_uint {
23812403
}

baselines/webworker.iterable.generated.d.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ interface Cache {
66
addAll(requests: Iterable<RequestInfo>): Promise<void>;
77
}
88

9+
interface CanvasPath {
10+
roundRect(x: number, y: number, w: number, h: number, radii?: number | DOMPointInit | Iterable<number | DOMPointInit>): void;
11+
}
12+
913
interface DOMStringList {
1014
[Symbol.iterator](): IterableIterator<string>;
1115
}

inputfiles/overridingTypes.jsonc

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2236,10 +2236,6 @@
22362236
}
22372237
}
22382238
},
2239-
"Performance": {
2240-
// See https://github.com/w3c/hr-time/pull/138
2241-
"exposed": "Window Worker"
2242-
},
22432239
"ScriptProcessorNode": {
22442240
"events": {
22452241
"event": [

inputfiles/removedTypes.jsonc

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,13 @@
3030
},
3131
"RTCStatsType": {
3232
"value": [
33-
"stream",
34-
"transceiver",
35-
"sender",
36-
"receiver",
37-
"sctp-transport",
38-
"ice-server"
33+
"ice-server", // Blink only as of 2022-09
34+
"media-playout", // No implementation as of 2022-09
35+
"receiver", // Blink only as of 2022-09
36+
"sctp-transport", // No implementation as of 2022-09
37+
"sender", // Blink only as of 2022-09
38+
"stream", // Blink only as of 2022-09
39+
"transceiver" // Blink only as of 2022-09
3940
]
4041
}
4142
}
@@ -429,6 +430,7 @@
429430
"jitterBufferMinimumDelay": null, // No implementation as of 2022-09
430431
"jitterBufferTargetDelay": null, // No implementation as of 2022-09
431432
"mid": null, // No implementation as of 2022-09
433+
"playoutId": null, // No implementation as of 2022-09
432434
"totalProcessingDelay": null, // Gecko only as of 2022-09
433435
"trackIdentifier": null // No implementation as of 2022-09
434436
}

0 commit comments

Comments
 (0)