Skip to content

Update to bcd@5.2.38: The unprecedented HUGE Safari 16.4 changes comes here #1514

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 43 commits into from
Mar 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
ba3f75f
Add CSS Properties and Values API
saschanaz Mar 3, 2023
17e92b6
Add CSS Typed OM: CSSStyleValue
saschanaz Mar 3, 2023
00b9a4b
Add CSS Typed OM: StylePropertyMap[ReadOnly]
saschanaz Mar 3, 2023
ceb0849
Add CSS Typed OM: CSSUnparsedValue
saschanaz Mar 3, 2023
f820353
Add CSS Typed OM: CSSVariableReferenceValue
saschanaz Mar 3, 2023
6800b45
Add CSS Typed OM: CSSKeywordValue
saschanaz Mar 3, 2023
6c8ca2d
Add CSS Typed OM: CSSNumericValue
saschanaz Mar 3, 2023
1544858
Add CSS Typed OM: CSSUnitValue
saschanaz Mar 3, 2023
c015034
Add CSS Typed OM: CSSMathValue
saschanaz Mar 3, 2023
5f8abe1
Add CSS Typed OM: CSSNumericArray
saschanaz Mar 3, 2023
b42066f
Add CSS Typed OM: CSSMathSum
saschanaz Mar 3, 2023
dc1fb49
Add CSS Typed OM: CSSMathProduct
saschanaz Mar 3, 2023
34ff268
Add CSS Typed OM: CSSMathNegate
saschanaz Mar 3, 2023
7738caa
Add CSS Typed OM: CSSMathInvert
saschanaz Mar 3, 2023
3bc3bd4
Add CSS Typed OM: CSSMathMin
saschanaz Mar 3, 2023
ea57b57
Add CSS Typed OM: CSSMathMax
saschanaz Mar 3, 2023
8f31092
Add CSS Typed OM: CSSMathClamp
saschanaz Mar 3, 2023
dbe8abe
Add CSS Typed OM: CSS static functions
saschanaz Mar 3, 2023
384cdb1
Add CSS Typed OM: CSSTransformComponent
saschanaz Mar 4, 2023
c71c0eb
Add CSS Typed OM: CSSTransformValue
saschanaz Mar 4, 2023
72b0ed6
Add CSS Typed OM: CSSTranslate
saschanaz Mar 4, 2023
7460db4
Add CSS Typed OM: CSSRotate
saschanaz Mar 4, 2023
1a99d12
Add CSS Typed OM: CSSScale
saschanaz Mar 4, 2023
8b78b4f
Add CSS Typed OM: CSSSkew{, X, Y}
saschanaz Mar 4, 2023
52f68ef
Add CSS Typed OM: CSSPerspective
saschanaz Mar 4, 2023
2e812ef
Add CSS Typed OM: CSSMatrixComponent
saschanaz Mar 4, 2023
3d2aa79
Add CSS Typed OM: CSSImageValue
saschanaz Mar 4, 2023
18b233f
Add Compression Streams
saschanaz Mar 4, 2023
07627f3
Add Reporting API
saschanaz Mar 4, 2023
e85f5ea
Add UserActivation
saschanaz Mar 4, 2023
cfe1ca1
Add Screen Wake Lock
saschanaz Mar 4, 2023
d72f578
Add WorkerNavigator.permissions
saschanaz Mar 4, 2023
568b251
Add WebGLRenderingContextBase.drawingBufferColorSpace
saschanaz Mar 4, 2023
df28ff2
Add Gamepad additions
saschanaz Mar 4, 2023
e647c51
Add WebCodecs: VideoFrame
saschanaz Mar 4, 2023
717fa46
Add WebCodecs: EncodedVideoChunk
saschanaz Mar 4, 2023
7259fac
Add WebCodecs: VideoDecoder
saschanaz Mar 4, 2023
b7924b1
Add WebCodecs: VideoEncoder
saschanaz Mar 4, 2023
3cd97a9
Add RTCIceTransport additions
saschanaz Mar 4, 2023
bd4a473
Add misc changes
saschanaz Mar 4, 2023
522b8a1
Update package-lock.json
saschanaz Mar 4, 2023
1703a68
Remove redundant forceKeepAlive
saschanaz Mar 4, 2023
da54e45
comment for `in`
saschanaz Mar 4, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions baselines/audioworklet.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -239,6 +239,14 @@ declare var ByteLengthQueuingStrategy: {
new(init: QueuingStrategyInit): ByteLengthQueuingStrategy;
};

interface CompressionStream extends GenericTransformStream {
}

declare var CompressionStream: {
prototype: CompressionStream;
new(format: string): CompressionStream;
};

/** This Streams API interface provides a built-in byte length queuing strategy that can be used when constructing streams. */
interface CountQueuingStrategy extends QueuingStrategy {
readonly highWaterMark: number;
Expand Down Expand Up @@ -325,6 +333,14 @@ declare var DOMException: {
readonly DATA_CLONE_ERR: 25;
};

interface DecompressionStream extends GenericTransformStream {
}

declare var DecompressionStream: {
prototype: DecompressionStream;
new(format: string): DecompressionStream;
};

/** Events providing information related to errors in scripts or in files. */
interface ErrorEvent extends Event {
readonly colno: number;
Expand Down
Loading