https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 21723c60a58b1be1c940a2d284bdcd54b34715cd authored by Jarryd on 13 December 2018, 18:38:01 UTC
Cookie Store: Test cross-origin frames + service workers.
Tip revision: 21723c6
element-request-fullscreen-twice-manual.html
<!DOCTYPE html>
<title>Element#requestFullscreen() twice</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="../trusted-click.js"></script>
<div id="log"></div>
<script>
async_test(t => {
  const div = document.querySelector("div");

  document.onfullscreenchange = t.step_func(() => {
    assert_equals(document.fullscreenElement, div);
    // Done, but ensure that there's only one fullscreenchange event.
    document.onfullscreenchange = t.unreached_func("second fullscreenchange event");
    step_timeout(t.step_func_done());
  });
  document.onfullscreenerror = t.unreached_func("fullscreenerror event");

  trusted_click(t, () => {
    // Request fullscreen twice.
    div.requestFullscreen();
    assert_equals(document.fullscreenElement, null, "fullscreenElement after first requestFullscreen()");
    div.requestFullscreen();
    assert_equals(document.fullscreenElement, null, "fullscreenElement after second requestFullscreen()");
  }, document.body);
});
</script>
back to top