summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/screen-orientation/nested-documents.html
blob: ec3c0b480971578b1529a7df524b3225797383f2 (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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<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>
<body>
  <script type="module">
    import {
      attachIframe,
      makeCleanup,
      getOppositeOrientation,
    } from "./resources/orientation-utils.js";

    promise_test(async (t) => {
      t.add_cleanup(makeCleanup());
      const iframe = await attachIframe();
      const iframeWin = iframe.contentWindow;

      // Go full screen
      await test_driver.bless("request full screen");
      await document.body.requestFullscreen();

      // Lock the orientation from the iframe
      const opposite = getOppositeOrientation();
      const iframePromise = iframeWin.screen.orientation.lock(opposite);

      // Calling lock() from top-level will cancel the iframe's promise
      const topPromise = window.screen.orientation.lock(opposite);
      await promise_rejects_dom(
        t,
        "AbortError",
        iframeWin.DOMException,
        iframePromise
      );
      await topPromise;
    }, "Requesting orientation lock from one document cancels the lock request from another document");

    promise_test(async (t) => {
      t.add_cleanup(makeCleanup());
      // Create 2 nested iframes
      const src = "/screen-orientation/resources/empty.html";
      const outerIframe = await attachIframe({ src: `${src}#1` });
      const innerIframe = await attachIframe({
        context: outerIframe.contentWindow,
        src: `${src}#2`,
      });

      const iframes = [outerIframe, innerIframe];

      // Go full screen
      await test_driver.bless(
        "request full screen"
      );
      await document.documentElement.requestFullscreen();
      const opposite = getOppositeOrientation();

      // Each iframe tries to lock the orientation
      const requestToLock = iframes.map((iframe) => {
        return {
          promise: iframe.contentWindow.screen.orientation.lock(opposite),
          context: iframe.contentWindow,
        };
      });

      // But calling lock() from top-level will aborts all iframe's promises
      const topPromise = window.screen.orientation.lock(opposite);

      // Check that all promises are rejected with AbortError
      for (let i = 0; i < requestToLock.length; i++) {
        const { promise, context } = requestToLock[i];
        await promise_rejects_dom(
          t,
          "AbortError",
          context.DOMException,
          promise,
          `Expected request to lock orientation from iframe ${i} to abort`
        );
      }
      // Finally, top-level promise resolves
      await topPromise;
    }, "The orientation lock from one document affects lock requests from other documents");
  </script>
</body>