summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/permissions-policy/permissions-policy-javascript-url-frame-policy.https.html
blob: 48385485802d220dd1d98198f14bd2302f9417aa (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
<!DOCTYPE html>

<head>
  <script src=/resources/testharness.js></script>
  <script src=/resources/testharnessreport.js></script>
</head>

<body>
  <script>
  'use strict';

  const script = 'script';
  const testPage = `
  <${script}>
    parent.postMessage(document.fullscreenEnabled, '*');
  </${script}>
  `;

  function runTest(allow, expectation) {
    return new Promise((resolve, reject) => {
      window.onmessage = event => resolve(event.data);

      const iframe = document.createElement("iframe");
      iframe.allow = allow;
      iframe.src = `javascript: \`${testPage}\``;
      document.body.appendChild(iframe);

    }).then(enabled => {
      assert_equals(enabled, expectation);
    });
  }

  promise_test(() => runTest('fullscreen *', true),
      'allow attribute(container policy) can enable feature on javascript generated document');

  promise_test(() => runTest("fullscreen 'none'", false),
      'allow attribute(container policy) can disable feature on javascript generated document');

  </script>
</body>