https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 8b0ebd326305e8b7268528aabc273556d79f7b27 authored by Luke Bjerring on 14 May 2018, 20:08:59 UTC
Add test for inheritance clash
Tip revision: 8b0ebd3
element-request-fullscreen-and-remove-iframe-manual.html
<!DOCTYPE html>
<title>Element#requestFullscreen() in iframe followed by removing the iframe</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="../trusted-click.js"></script>
<div id="log"></div>
<iframe allowfullscreen></iframe>
<script>
async_test(t => {
  const iframe = document.querySelector("iframe");
  const iframeDocument = iframe.contentDocument;

  document.onfullscreenchange = t.unreached_func("fullscreenchange event");
  document.onfullscreenerror = t.unreached_func("fullscreenerror event");
  iframeDocument.onfullscreenchange = t.unreached_func("iframe fullscreenchange event");
  iframeDocument.onfullscreenerror = t.unreached_func("iframe fullscreenerror event");

  trusted_click(t, () => {
    iframeDocument.body.requestFullscreen();
    iframe.remove();
    // No events will be fired, end test after 100ms.
    step_timeout(t.step_func_done(() => {
      assert_equals(document.fullscreenElement, null);
      assert_equals(iframeDocument.fullscreenElement, null);
    }), 100);
  }, document.body);
});
</script>
back to top