Skip to content

Commit 48b4411

Browse files
committed
Update baseline.
1 parent ef60cfd commit 48b4411

File tree

1 file changed

+17
-6
lines changed

1 file changed

+17
-6
lines changed

baselines/dom.generated.d.ts

Lines changed: 17 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2328,7 +2328,9 @@ declare var AudioParamMap: {
23282328
new(): AudioParamMap;
23292329
};
23302330

2331-
/** The Web Audio API events that occur when a ScriptProcessorNode input buffer is ready to be processed. */
2331+
/** The Web Audio API events that occur when a ScriptProcessorNode input buffer is ready to be processed.
2332+
* @deprecated As of the August 29 2014 Web Audio API spec publication, this feature has been marked as deprecated, and is soon to be replaced by AudioWorklet.
2333+
*/
23322334
interface AudioProcessingEvent extends Event {
23332335
readonly inputBuffer: AudioBuffer;
23342336
readonly outputBuffer: AudioBuffer;
@@ -10527,7 +10529,8 @@ declare var MouseEvent: {
1052710529
new(type: string, eventInitDict?: MouseEventInit): MouseEvent;
1052810530
};
1052910531

10530-
/** Provides event properties that are specific to modifications to the Document Object Model (DOM) hierarchy and nodes. */
10532+
/** Provides event properties that are specific to modifications to the Document Object Model (DOM) hierarchy and nodes.
10533+
* @deprecated DOM4 [DOM] provides a new mechanism using a MutationObserver interface which addresses the use cases that mutation events solve, but in a more performant manner. Thus, this specification describes mutation events for reference and completeness of legacy behavior, but deprecates the use of the MutationEvent interface. */
1053110534
interface MutationEvent extends Event {
1053210535
readonly attrChange: number;
1053310536
readonly attrName: string;
@@ -11514,7 +11517,9 @@ declare var PerformanceMeasure: {
1151411517
new(): PerformanceMeasure;
1151511518
};
1151611519

11517-
/** The legacy PerformanceNavigation interface represents information about how the navigation to the current document was done. */
11520+
/** The legacy PerformanceNavigation interface represents information about how the navigation to the current document was done.
11521+
* @deprecated This interface is deprecated in the Navigation Timing Level 2 specification. Please use the PerformanceNavigationTiming interface instead.
11522+
*/
1151811523
interface PerformanceNavigation {
1151911524
readonly redirectCount: number;
1152011525
readonly type: number;
@@ -11604,7 +11609,9 @@ declare var PerformanceResourceTiming: {
1160411609
new(): PerformanceResourceTiming;
1160511610
};
1160611611

11607-
/** A legacy interface kept for backwards compatibility and contains properties that offer performance timing information for various events which occur during the loading and use of the current page. You get a PerformanceTiming object describing your page using the window.performance.timing property. */
11612+
/** A legacy interface kept for backwards compatibility and contains properties that offer performance timing information for various events which occur during the loading and use of the current page. You get a PerformanceTiming object describing your page using the window.performance.timing property.
11613+
* @deprecated This interface is deprecated in the Navigation Timing Level 2 specification. Please use the PerformanceNavigationTiming interface instead.
11614+
*/
1160811615
interface PerformanceTiming {
1160911616
readonly connectEnd: number;
1161011617
readonly connectStart: number;
@@ -14776,7 +14783,9 @@ interface ScriptProcessorNodeEventMap {
1477614783
"audioprocess": AudioProcessingEvent;
1477714784
}
1477814785

14779-
/** Allows the generation, processing, or analyzing of audio using JavaScript. */
14786+
/** Allows the generation, processing, or analyzing of audio using JavaScript.
14787+
* @deprecated As of the August 29 2014 Web Audio API spec publication, this feature has been marked as deprecated, and was replaced by AudioWorklet (see AudioWorkletNode).
14788+
*/
1478014789
interface ScriptProcessorNode extends AudioNode {
1478114790
/** @deprecated */
1478214791
readonly bufferSize: number;
@@ -14900,7 +14909,9 @@ declare var ServiceWorkerContainer: {
1490014909
new(): ServiceWorkerContainer;
1490114910
};
1490214911

14903-
/** This ServiceWorker API interface contains information about an event sent to a ServiceWorkerContainer target. This extends the default message event to allow setting a ServiceWorker object as the source of a message. The event object is accessed via the handler function of a message event, when fired by a message received from a service worker. */
14912+
/** This ServiceWorker API interface contains information about an event sent to a ServiceWorkerContainer target. This extends the default message event to allow setting a ServiceWorker object as the source of a message. The event object is accessed via the handler function of a message event, when fired by a message received from a service worker.
14913+
* @deprecated In modern browsers, this interface has been deprecated. Service worker messages will now use the MessageEvent interface, for consistency with other web messaging features.
14914+
*/
1490414915
interface ServiceWorkerMessageEvent extends Event {
1490514916
readonly data: any;
1490614917
readonly lastEventId: string;

0 commit comments

Comments
 (0)