blob: c37bd6bd0214335f1f36222a09d1aa19b85bb87b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<html class="reftest-wait">
<script>
document.addEventListener("DOMContentLoaded", async () => {
SpecialPowers.wrap(document).notifyUserGestureActivation();
try {
(await navigator.mediaDevices.getDisplayMedia({
"video": {
"frameRate": 2147483647,
},
})).stop();
} finally {
document.documentElement.removeAttribute("class");
}
});
</script>
</html>
|