diff --git a/index.html b/index.html index 153c118..2443842 100644 --- a/index.html +++ b/index.html @@ -300,6 +300,16 @@
If options.{{DisplayMediaStreamOptions/windowAudio}} + is set to {{WindowAudioPreferenceEnum/"exclude"}}, and + options.{{DisplayMediaStreamOptions/systemAudio}} + is either unset or set to {{SystemAudioPreferenceEnum/"include"}}, + return a promise [=reject|rejected=] with a newly [=exception/created=] + {{TypeError}}.
+For each [= map/exist | existing =] member in constraints whose value, CS, is a @@ -1399,6 +1409,53 @@
Describes whether an application invoking + {{MediaDevices/getDisplayMedia()}} would like the user agent to include + window audio among the audio sources offered to the user.
+ ++ enum WindowAudioPreferenceEnum { + "include", + "exclude" + }; ++ +
Enumeration description | +|
---|---|
include + | + +The application prefers that options to share window audio be + offered to the user for [=display surface/monitor=] [=display + surfaces=]. | +
exclude + | + +The application prefers that options to share window audio + not be offered to the user. | +
windowAudio
of type
+ {{WindowAudioPreferenceEnum}}systemAudio
of type
{{SystemAudioPreferenceEnum}}