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/dom.generated.d.ts
+17-6Lines changed: 17 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -2328,7 +2328,9 @@ declare var AudioParamMap: {
2328
2328
new(): AudioParamMap;
2329
2329
};
2330
2330
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.
/** 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. */
10531
10534
interface MutationEvent extends Event {
10532
10535
readonly attrChange: number;
10533
10536
readonly attrName: string;
@@ -11514,7 +11517,9 @@ declare var PerformanceMeasure: {
11514
11517
new(): PerformanceMeasure;
11515
11518
};
11516
11519
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
+
*/
11518
11523
interface PerformanceNavigation {
11519
11524
readonly redirectCount: number;
11520
11525
readonly type: number;
@@ -11604,7 +11609,9 @@ declare var PerformanceResourceTiming: {
11604
11609
new(): PerformanceResourceTiming;
11605
11610
};
11606
11611
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.
/** 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
+
*/
14780
14789
interface ScriptProcessorNode extends AudioNode {
14781
14790
/** @deprecated */
14782
14791
readonly bufferSize: number;
@@ -14900,7 +14909,9 @@ declare var ServiceWorkerContainer: {
14900
14909
new(): ServiceWorkerContainer;
14901
14910
};
14902
14911
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.
0 commit comments