Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /fullscreen/crashtests/chrome-1312699.html - WPT Dashboard Interop Dashboard
<!doctype html>
<html class="reftest-wait">
<script src="/resources/testdriver.js"></script>
<script src="/resources/testdriver-vendor.js"></script>
<video></video>
<script>
async function crash() {
let video = document.querySelector("video");
await video.requestFullscreen();
video.width = null;
document.documentElement.classList.remove("reftest-wait");
}
document.addEventListener("click", () => crash(), false);
requestAnimationFrame(() => requestAnimationFrame(() => {
test_driver.click(document.body);
}));
</script>
</body>
</html>