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
+1
Original file line number
Diff line number
Diff line change
@@ -718,6 +718,7 @@ declare var WritableStream: {
718
718
719
719
/** This Streams API interface represents a controller allowing control of a WritableStream's state. When constructing a WritableStream, the underlying sink is given a corresponding WritableStreamDefaultController instance to manipulate. */
/** Returns the ShadowRoot for internals's target element, if the target element is a shadow host, or null otherwise. */
4953
4967
readonly shadowRoot: ShadowRoot | null;
4968
+
/** Returns the error message that would be shown to the user if internals's target element was to be checked for validity. */
4969
+
readonly validationMessage: string;
4970
+
/** Returns the ValidityState object for internals's target element. */
4971
+
readonly validity: ValidityState;
4954
4972
/** Returns true if internals's target element will be validated when the form is submitted; false otherwise. */
4955
4973
readonly willValidate: boolean;
4974
+
/** Returns true if internals's target element has no validity problems; false otherwise. Fires an invalid event at the element in the latter case. */
4975
+
checkValidity(): boolean;
4976
+
/** Returns true if internals's target element has no validity problems; otherwise, returns false, fires an invalid event at the element, and (if the event isn't canceled) reports the problem to the user. */
4977
+
reportValidity(): boolean;
4956
4978
/**
4957
4979
* Sets both the state and submission value of internals's target element to value.
4958
4980
*
4959
4981
* If value is null, the element won't participate in form submission.
/** Marks internals's target element as suffering from the constraints indicated by the flags argument, and sets the element's validation message to message. If anchor is specified, the user agent might use it to indicate problems with the constraints of internals's target element when the form owner is validated interactively or reportValidity() is called. */
@@ -16719,6 +16743,7 @@ declare var WritableStream: {
16719
16743
16720
16744
/** This Streams API interface represents a controller allowing control of a WritableStream's state. When constructing a WritableStream, the underlying sink is given a corresponding WritableStreamDefaultController instance to manipulate. */
@@ -5206,6 +5208,7 @@ declare var WritableStream: {
5206
5208
5207
5209
/** This Streams API interface represents a controller allowing control of a WritableStream's state. When constructing a WritableStream, the underlying sink is given a corresponding WritableStreamDefaultController instance to manipulate. */
/** Dispatches a synthetic event event to target and returns true if either event's cancelable attribute value is false or its preventDefault() method was not invoked, and false otherwise. */
Copy file name to clipboardExpand all lines: baselines/sharedworker.generated.d.ts
+2
Original file line number
Diff line number
Diff line change
@@ -898,6 +898,7 @@ declare var CustomEvent: {
898
898
899
899
/** An abnormal event (called an exception) which occurs as a result of calling a method or accessing a property of a web API. */
900
900
interfaceDOMExceptionextendsError{
901
+
/** @deprecated */
901
902
readonlycode: number;
902
903
readonlymessage: string;
903
904
readonlyname: string;
@@ -5085,6 +5086,7 @@ declare var WritableStream: {
5085
5086
5086
5087
/** This Streams API interface represents a controller allowing control of a WritableStream's state. When constructing a WritableStream, the underlying sink is given a corresponding WritableStreamDefaultController instance to manipulate. */
@@ -5365,6 +5367,7 @@ declare var WritableStream: {
5365
5367
5366
5368
/** This Streams API interface represents a controller allowing control of a WritableStream's state. When constructing a WritableStream, the underlying sink is given a corresponding WritableStreamDefaultController instance to manipulate. */
0 commit comments