summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/fenced-frame/csp-fenced-frame-src-allowed.https.html
blob: cf603c29a690ff41d9f84aa8a2bc4164b7f792cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<meta http-equiv="Content-Security-Policy" content="fenced-frame-src 'self'">
<title>Test Content-Security-Policy fenced-frame-src</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="resources/utils.js"></script>
<script src="/common/utils.js"></script>

<body>
<script>
const key = token();

promise_test(async () => {
  attachFencedFrame(generateURL(
      "resources/csp-fenced-frame-src-allowed-inner.html",
      [key]));
  const result = await nextValueFromServer(key);
  assert_equals(result, "loaded",
                "The fenced frame is loaded as expected");
}, "csp-fenced-frame-src-allowed");
</script>
</body>