@@ -1494,12 +1494,12 @@ interface RTCTransportStats extends RTCStats {
14941494 tlsVersion?: string;
14951495}
14961496
1497- interface ReadableStreamDefaultReadDoneResult {
1497+ interface ReadableStreamReadDoneResult {
14981498 done: true;
14991499 value?: undefined;
15001500}
15011501
1502- interface ReadableStreamDefaultReadValueResult <T> {
1502+ interface ReadableStreamReadValueResult <T> {
15031503 done: false;
15041504 value: T;
15051505}
@@ -2547,7 +2547,7 @@ declare var CSSAnimation: {
25472547
25482548/** A single condition CSS at-rule, which consists of a condition and a statement block. It is a child of CSSGroupingRule. */
25492549interface CSSConditionRule extends CSSGroupingRule {
2550- conditionText: string;
2550+ readonly conditionText: string;
25512551}
25522552
25532553declare var CSSConditionRule: {
@@ -2833,7 +2833,6 @@ interface CSSStyleDeclaration {
28332833 columns: string;
28342834 contain: string;
28352835 content: string;
2836- contentVisibility: string;
28372836 counterIncrement: string;
28382837 counterReset: string;
28392838 counterSet: string;
@@ -3207,6 +3206,8 @@ interface CSSStyleDeclaration {
32073206 /** @deprecated This is a legacy alias of `perspectiveOrigin`. */
32083207 webkitPerspectiveOrigin: string;
32093208 webkitTextFillColor: string;
3209+ /** @deprecated This is a legacy alias of `textSizeAdjust`. */
3210+ webkitTextSizeAdjust: string;
32103211 webkitTextStroke: string;
32113212 webkitTextStrokeColor: string;
32123213 webkitTextStrokeWidth: string;
@@ -11466,7 +11467,7 @@ declare var ReadableStreamDefaultController: {
1146611467};
1146711468
1146811469interface ReadableStreamDefaultReader<R = any> extends ReadableStreamGenericReader {
11469- read(): Promise<ReadableStreamDefaultReadResult <R>>;
11470+ read(): Promise<ReadableStreamReadResult <R>>;
1147011471 releaseLock(): void;
1147111472}
1147211473
@@ -18115,7 +18116,7 @@ type OnBeforeUnloadEventHandler = OnBeforeUnloadEventHandlerNonNull | null;
1811518116type OnErrorEventHandler = OnErrorEventHandlerNonNull | null;
1811618117type PerformanceEntryList = PerformanceEntry[];
1811718118type ReadableStreamController<T> = ReadableStreamDefaultController<T>;
18118- type ReadableStreamDefaultReadResult <T> = ReadableStreamDefaultReadValueResult <T> | ReadableStreamDefaultReadDoneResult ;
18119+ type ReadableStreamReadResult <T> = ReadableStreamReadValueResult <T> | ReadableStreamReadDoneResult ;
1811918120type ReadableStreamReader<T> = ReadableStreamDefaultReader<T>;
1812018121type RenderingContext = CanvasRenderingContext2D | ImageBitmapRenderingContext | WebGLRenderingContext | WebGL2RenderingContext;
1812118122type RequestInfo = Request | string;
@@ -18162,7 +18163,7 @@ type CompositeOperationOrAuto = "accumulate" | "add" | "auto" | "replace";
1816218163type CredentialMediationRequirement = "optional" | "required" | "silent";
1816318164type DOMParserSupportedType = "application/xhtml+xml" | "application/xml" | "image/svg+xml" | "text/html" | "text/xml";
1816418165type DirectionSetting = "" | "lr" | "rl";
18165- type DisplayCaptureSurfaceType = "application" | " browser" | "monitor" | "window";
18166+ type DisplayCaptureSurfaceType = "browser" | "monitor" | "window";
1816618167type DistanceModelType = "exponential" | "inverse" | "linear";
1816718168type DocumentReadyState = "complete" | "interactive" | "loading";
1816818169type DocumentVisibilityState = "hidden" | "visible";
0 commit comments