File: element-request-fullscreen-and-exit-iframe-manual.html

package info (click to toggle)
firefox-esr 78.15.0esr-1~deb11u1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 3,301,156 kB
  • sloc: cpp: 5,665,905; javascript: 4,798,386; ansic: 2,878,233; python: 977,004; asm: 270,347; xml: 181,456; java: 111,756; sh: 72,926; makefile: 21,819; perl: 13,380; cs: 4,725; yacc: 4,565; objc: 3,026; pascal: 1,787; lex: 1,720; ada: 1,681; exp: 505; php: 436; lisp: 260; awk: 152; ruby: 103; csh: 80; sed: 53; sql: 45
file content (45 lines) | stat: -rw-r--r-- 1,970 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<title>Element#requestFullscreen() and Document#exitFullscreen() in 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>
// wait for load event to avoid https://bugzil.la/1493878
window.onload = function() {
  async_test(t => {
    const iframe = document.querySelector('iframe');
    const iframeDoc = iframe.contentDocument;
    const iframeBody = iframeDoc.body;

    let count = 0;
    document.onfullscreenchange = iframeDoc.onfullscreenchange = t.step_func(event => {
      count++;
      assert_between_inclusive(count, 1, 4, 'number of fullscreenchange events');
      // Both when entering and exiting, the fullscreenchange event is fired first
      // on the outer document and then on the iframe's document. This is because
      // the events are fired in animation frame tasks, which run in "frame tree"
      // order.
      const expected = {
        target: count == 1 || count == 3 ? iframe : iframeBody,
        outerFullscreenElement: count <= 2 ? iframe : null,
        innerFullscreenElement: count <= 2 ? iframeBody : null,
      };
      assert_equals(event.target, expected.target, 'event target');
      assert_equals(document.fullscreenElement, expected.outerFullscreenElement, 'outer fullscreenElement');
      assert_equals(iframeDoc.fullscreenElement, expected.innerFullscreenElement, 'inner fullscreenElement');
      if (count == 2) {
        iframeDoc.exitFullscreen();
      } else if (count == 4) {
        // Done, but set timeout to fail on extra events.
        step_timeout(t.step_func_done());
      }
    });
    document.onfullscreenerror = t.unreached_func('fullscreenerror event');
    iframeDoc.onfullscreenerror = t.unreached_func('iframe fullscreenerror event');

    trusted_request(t, iframeBody, iframeBody);
  });
};
</script>