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
+12Lines changed: 12 additions & 0 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 **`CanvasRenderingContext2D.canvas`** property, part of the Canvas API, is a read-only reference to the HTMLCanvasElement object that is associated with a given context. It might be null if there is no associated <canvas> element.
10502
+
* The **`CanvasRenderingContext2D.canvas`** property, part of the Canvas API, is a read-only reference to the HTMLCanvasElement object that is associated with a given context.
* The **`Document.createAttribute()`** method creates a new attribute node, and returns it. The object created is a node implementing the Attr interface. The DOM does not enforce what sort of attributes can be added to a particular element in this manner.
13008
+
* The **`createAttribute()`** method of the Document interface creates a new attribute node.
* The **`Document.createAttributeNS()`** method creates a new attribute node with the specified namespace URI and qualified name, and returns it. The object created is a node implementing the Attr interface. The DOM does not enforce what sort of attributes can be added to a particular element in this manner.
13014
+
* The **`createAttributeNS()`** method of the Document interface creates a new attribute node with the specified namespace URI and qualified name.
* In an HTML document, the **`document.createElement()`** method creates the HTML element specified by localName, or an HTMLUnknownElement if localName isn't recognized.
13038
+
* The **`createElement()`** method of the Document interface creates a new HTMLElement that has the specified localName.
* The **`toggleAttribute()`** method of the Element interface toggles a Boolean attribute (removing it if it is present and adding it if it is not present) on the given element.
14020
+
* The **`toggleAttribute()`** method of the Element interface toggles a Boolean attribute on the given element, removing it if present and adding it if not present.
* The **`loading`** property of the HTMLIFrameElement interface is a string that provides a hint to the user agent indicating whether the iframe should be loaded immediately on page load, or only when it is needed.
18537
+
* The **`loading`** property of the HTMLIFrameElement interface is a string that provides a hint to the browser indicating whether the iframe should be loaded immediately on page load, or only when it is needed.
* The **`loading`** property of the HTMLImageElement interface provides a hint to the user agent on how to handle the loading of the image which is currently outside the window's visual viewport. This helps to optimize the loading of the document's contents by postponing loading the image until it's expected to be needed, rather than immediately during the initial page load. It reflects the <img> element's loading content attribute.
18680
+
* The **`loading`** property of the HTMLImageElement interface provides a hint to the browser on how to handle the loading of the image which is currently outside the window's visual viewport. This helps to optimize the loading of the document's contents by postponing loading the image until it's expected to be needed, rather than immediately during the initial page load. It reflects the <img> element's loading content attribute.
@@ -26940,6 +26945,18 @@ declare var OffscreenCanvasRenderingContext2D: {
26940
26945
new(): OffscreenCanvasRenderingContext2D;
26941
26946
};
26942
26947
26948
+
interface Origin {
26949
+
readonly opaque: boolean;
26950
+
isSameOrigin(other: Origin): boolean;
26951
+
isSameSite(other: Origin): boolean;
26952
+
}
26953
+
26954
+
declare var Origin: {
26955
+
prototype: Origin;
26956
+
new(): Origin;
26957
+
from(value: any): Origin;
26958
+
};
26959
+
26943
26960
/**
26944
26961
* The **`OscillatorNode`** interface represents a periodic waveform, such as a sine wave. It is an AudioScheduledSourceNode audio-processing module that causes a specified frequency of a given wave to be created—in effect, a constant tone.
26945
26962
*
@@ -27064,7 +27081,9 @@ declare var PageTransitionEvent: {
* 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.
35024
+
* 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.
Copy file name to clipboardExpand all lines: baselines/serviceworker.generated.d.ts
+19-1Lines changed: 19 additions & 1 deletion
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.
Copy file name to clipboardExpand all lines: baselines/sharedworker.generated.d.ts
+19-1Lines changed: 19 additions & 1 deletion
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.
Copy file name to clipboardExpand all lines: baselines/ts5.5/audioworklet.generated.d.ts
+12Lines changed: 12 additions & 0 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.
0 commit comments