summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/fullscreen/crashtests/chrome-1312699.html
blob: c783b0d9cc9634654f59654945a1bdcf38539cc8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!doctype html>
<html class="reftest-wait">
<link rel="help" href="https://crbug.com/1312699">
<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>