https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 7547853bcc27be8bd0fc6f57b7cd2ea38e179cd7 authored by Henrik Boström on 29 March 2018, 13:27:36 UTC
RTCRtpReceiver.getStats() in blink added behind flag.
Tip revision: 7547853
move-to-iframe-manual.html
<!DOCTYPE html>
<title>Move the fullscreen element to another document</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="../trusted-click.js"></script>
<div></div>
<iframe></iframe>
<script>
async_test(t => {
  const div = document.querySelector("div");
  const iframe = document.querySelector("iframe");
  document.onfullscreenchange = t.step_func(event => {
    assert_equals(document.fullscreenElement, div);
    assert_equals(event.target, div);

    assert_equals(div.ownerDocument, document);
    iframe.contentDocument.body.appendChild(div);
    assert_not_equals(div.ownerDocument, document);

    div.onfullscreenchange = t.unreached_func("fullscreenchange fired on element");
    iframe.contentDocument.onfullscreenchange = t.unreached_func("fullscreenchange fired on other document");
    document.onfullscreenchange = t.step_func_done(event => {
      assert_equals(document.fullscreenElement, null);
      assert_equals(event.target, document);
    });
  });
  trusted_request(t, div);
});
</script>
back to top