blob: 977ebddf5329548e6b9055ba1cfb66db3af0b21c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<!DOCTYPE html>
<html class="reftest-wait">
<script>
navigator.mediaDevices.getUserMedia({audio: {
echoCancellation: false,
noiseSuppression: false,
autoGainControl: false
}, fake: true
}).then((stream) => {
document.documentElement.removeAttribute("class");
})
</script>
</html>
|