summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/fenced-frame/resources/sandbox-mandatory-flags-iframe.sub.html
blob: 7ee8b7d98f76b18996e36aceebcc8b90d029d9cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<!DOCTYPE html>
<title>Iframe content to load a fenced frame and report a value to the server</title>
<script src="utils.js"></script>

<body>
<script>
  const fencedframe = document.createElement("fencedframe");
  fencedframe.config = new FencedFrameConfig(
      generateURL("sandbox-mandatory-flags-inner.sub.html?key={{GET[key]}}" +
          "&value={{GET[value]}}", []));
  document.body.appendChild(fencedframe);
</script>
</body>