You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: baselines/audioworklet.generated.d.ts
+17-5Lines changed: 17 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -831,6 +831,18 @@ declare var MessagePort: {
831
831
new(): MessagePort;
832
832
};
833
833
834
+
interfaceOrigin{
835
+
readonlyopaque: boolean;
836
+
isSameOrigin(other: Origin): boolean;
837
+
isSameSite(other: Origin): boolean;
838
+
}
839
+
840
+
declarevarOrigin: {
841
+
prototype: Origin;
842
+
new(): Origin;
843
+
from(value: any): Origin;
844
+
};
845
+
834
846
/**
835
847
* The **`PromiseRejectionEvent`** interface represents events which are sent to the global script context when JavaScript Promises are rejected. These events are particularly useful for telemetry and debugging purposes.
* The WebAssembly.**`Module.customSections()`** static method returns a copy of the contents of all custom sections in the given module with the given string name.
Copy file name to clipboardExpand all lines: baselines/serviceworker.generated.d.ts
+25-7Lines changed: 25 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -7267,6 +7267,18 @@ declare var OffscreenCanvasRenderingContext2D: {
7267
7267
new(): OffscreenCanvasRenderingContext2D;
7268
7268
};
7269
7269
7270
+
interface Origin {
7271
+
readonly opaque: boolean;
7272
+
isSameOrigin(other: Origin): boolean;
7273
+
isSameSite(other: Origin): boolean;
7274
+
}
7275
+
7276
+
declare var Origin: {
7277
+
prototype: Origin;
7278
+
new(): Origin;
7279
+
from(value: any): Origin;
7280
+
};
7281
+
7270
7282
/**
7271
7283
* The **`Path2D`** interface of the Canvas 2D API is used to declare a path that can then be used on a CanvasRenderingContext2D object. The path methods of the CanvasRenderingContext2D interface are also present on this interface, which gives you the convenience of being able to retain and replay your path whenever desired.
* The **`contentType`** read-only property of the PerformanceResourceTiming interface is a string indicating the content type of the fetched resource, formatted as a MIME type and subtype separated by a forward slash.
* The **`decodedBodySize`** read-only property returns the size (in octets) received from the fetch (HTTP or cache) of the message body after removing any applied content encoding (like gzip or Brotli). If the resource is retrieved from an application cache or local resources, it returns the size of the payload after removing any applied content encoding.
* The **`columnNumber`** read-only property of the SecurityPolicyViolationEvent interface is the column number in the document or worker script at which the Content Security Policy (CSP) violation occurred.
8511
+
* The **`columnNumber`** read-only property of the SecurityPolicyViolationEvent interface is the character position in the source file line of the document or worker script at which the Content Security Policy (CSP) violation occurred.
* The WebAssembly.**`Module.customSections()`** static method returns a copy of the contents of all custom sections in the given module with the given string name.
Copy file name to clipboardExpand all lines: baselines/sharedworker.generated.d.ts
+25-7Lines changed: 25 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -6925,6 +6925,18 @@ declare var OffscreenCanvasRenderingContext2D: {
6925
6925
new(): OffscreenCanvasRenderingContext2D;
6926
6926
};
6927
6927
6928
+
interface Origin {
6929
+
readonly opaque: boolean;
6930
+
isSameOrigin(other: Origin): boolean;
6931
+
isSameSite(other: Origin): boolean;
6932
+
}
6933
+
6934
+
declare var Origin: {
6935
+
prototype: Origin;
6936
+
new(): Origin;
6937
+
from(value: any): Origin;
6938
+
};
6939
+
6928
6940
/**
6929
6941
* The **`Path2D`** interface of the Canvas 2D API is used to declare a path that can then be used on a CanvasRenderingContext2D object. The path methods of the CanvasRenderingContext2D interface are also present on this interface, which gives you the convenience of being able to retain and replay your path whenever desired.
* The **`contentType`** read-only property of the PerformanceResourceTiming interface is a string indicating the content type of the fetched resource, formatted as a MIME type and subtype separated by a forward slash.
* The **`decodedBodySize`** read-only property returns the size (in octets) received from the fetch (HTTP or cache) of the message body after removing any applied content encoding (like gzip or Brotli). If the resource is retrieved from an application cache or local resources, it returns the size of the payload after removing any applied content encoding.
* The **`columnNumber`** read-only property of the SecurityPolicyViolationEvent interface is the column number in the document or worker script at which the Content Security Policy (CSP) violation occurred.
8094
+
* The **`columnNumber`** read-only property of the SecurityPolicyViolationEvent interface is the character position in the source file line of the document or worker script at which the Content Security Policy (CSP) violation occurred.
* The WebAssembly.**`Module.customSections()`** static method returns a copy of the contents of all custom sections in the given module with the given string name.
Copy file name to clipboardExpand all lines: baselines/ts5.5/audioworklet.generated.d.ts
+17-5Lines changed: 17 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -828,6 +828,18 @@ declare var MessagePort: {
828
828
new(): MessagePort;
829
829
};
830
830
831
+
interfaceOrigin{
832
+
readonlyopaque: boolean;
833
+
isSameOrigin(other: Origin): boolean;
834
+
isSameSite(other: Origin): boolean;
835
+
}
836
+
837
+
declarevarOrigin: {
838
+
prototype: Origin;
839
+
new(): Origin;
840
+
from(value: any): Origin;
841
+
};
842
+
831
843
/**
832
844
* The **`PromiseRejectionEvent`** interface represents events which are sent to the global script context when JavaScript Promises are rejected. These events are particularly useful for telemetry and debugging purposes.
* The WebAssembly.**`Module.customSections()`** static method returns a copy of the contents of all custom sections in the given module with the given string name.
0 commit comments