summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/feature-policy/resources/sandbox-self.html
blob: 3488338f96938edc5aae0f301b4cabb37ef4e3e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<title>Return fullscreen feature policy state from self and a sandboxed child frame</title>
<script>
  "use strict";
  window.onload = () => {
    let frame = document.createElement('iframe');
    frame.src = "/feature-policy/resources/nested-sandbox.html";
    frame.sandbox = "allow-scripts";

    var handle_message = evt => {
      if (evt.source === frame.contentWindow) {
        window.parent.postMessage({
          "child": document.featurePolicy.allowedFeatures().includes("fullscreen"),
          "grandchild": evt.data
        },"*");
        document.body.removeChild(frame);
        window.removeEventListener('message', handle_message);
      }
    };
    window.addEventListener('message', handle_message);
    document.body.appendChild(frame);
  };
</script>