summaryrefslogtreecommitdiffstats
path: root/mobile/android/geckoview/src/androidTest/assets/www/getusermedia_xorigin_container.html
blob: 2ba4a89b547df467830df3753964287fe8fb7bcb (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
<html>
  <head>
    <meta charset="utf-8" />
    <title>GetUserMedia from cross-origin iframe: the container document</title>
  </head>
  <body>
    <iframe
      id="iframe_no_allow"
      src="http://127.0.0.1:4245/assets/www/getusermedia_xorigin_iframe.html"
    ></iframe>
    <iframe
      id="iframe"
      allow="camera;microphone"
      src="http://127.0.0.1:4245/assets/www/getusermedia_xorigin_iframe.html"
    ></iframe>
    <script>
      "use strict";

      let iframeWindow;
      let generation = 1;

      async function Send(obj) {
        obj.gen = generation++;
        iframeWindow.postMessage(obj, "http://127.0.0.1:4245");
        while (true) {
          const {
            data: { gen, result },
          } = await new Promise(r => (window.onmessage = r));
          if (gen == obj.gen) {
            return result;
          }
        }
      }

      function Start(constraints) {
        if (iframeWindow) {
          return "iframe mode already decided";
        }
        iframeWindow = document.getElementById("iframe").contentWindow;
        return Send({ name: "start", constraints });
      }

      function StartNoAllow(constraints) {
        if (iframeWindow) {
          return "iframe mode already decided";
        }
        iframeWindow = document.getElementById("iframe_no_allow").contentWindow;
        return Send({ name: "start", constraints });
      }

      async function Stop() {
        const result = await Send({ name: "stop" });
        iframeWindow = undefined;
        return result;
      }
    </script>
  </body>
</html>