blob: f542347c710143e6003e96907c989614a40c701a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
// GENERATED CONTENT - DO NOT EDIT
// Content was automatically extracted by Reffy into webref
// (https://github.com/w3c/webref)
// Source: Audio Session (https://w3c.github.io/audio-session/)
enum AudioSessionState {
"inactive",
"active",
"interrupted"
};
enum AudioSessionType {
"auto",
"playback",
"transient",
"transient-solo",
"ambient",
"play-and-record"
};
[Exposed=Window]
partial interface Navigator {
// The default audio session that the user agent will use when media elements start/stop playing.
readonly attribute AudioSession audioSession;
};
[Exposed=Window]
interface AudioSession : EventTarget {
attribute AudioSessionType type;
readonly attribute AudioSessionState state;
attribute EventHandler onstatechange;
};
|