summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/fullscreen/model/remove-last.html
blob: 760ccaa0bab7d2b218ade41aa950b9454037c7c1 (plain)
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
46
47
<!DOCTYPE html>
<title>Remove the last element on the fullscreen element stack</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/resources/testdriver.js"></script>
<script src="/resources/testdriver-vendor.js"></script>
<script src="../trusted-click.js"></script>
<div id="log"></div>
<div id="first">
  <div id="last"></div>
</div>
<script>
  promise_test(async (t) => {
    t.add_cleanup(() => {
      if (document.fullscreenElement) {
        return document.exitFullscreen();
      }
    });
    const first = document.getElementById("first");
    const [, firstEvent] = await Promise.all([
      trusted_request(first),
      fullScreenChange(),
    ]);

    assert_equals(document.fullscreenElement, first);
    assert_equals(firstEvent.target, first);

    const last = document.getElementById("last");
    const [, lastEvent] = await Promise.all([
      trusted_request(last),
      fullScreenChange(),
    ]);

    assert_equals(document.fullscreenElement, last);
    assert_equals(event.target, last);
    last.remove();
    // Because /last/ was removed from the top layer, we exit
    // fullscreen element synchronously.
    assert_equals(document.fullscreenElement, first);

    const finalEvent = await fullScreenChange();
    // fullscreen change element should be queued against the
    // document target.
    assert_equals(document.fullscreenElement, null);
    assert_equals(event.target, document);
  });
</script>