Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test gets skipped with pattern: !webrtc OR (display == 'wayland') OR (os == 'android')
- Manifest: dom/media/tests/crashtests/crashtests.list
<!DOCTYPE html>
<html class="reftest-wait">
<head>
</head>
</body>
<script type="application/javascript">
async function test() {
SpecialPowers.wrap(document).notifyUserGestureActivation();
await window.navigator.mediaDevices.getUserMedia({
video: {
mediaSource: 'screen',
height: {max: 0},
},
});
await window.navigator.mediaDevices.getUserMedia({
video: {
mediaSource: 'screen',
advanced: [{height: 0}],
},
});
document.documentElement.removeAttribute("class");
}
test();
</script>
</body>
</html>