summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/trusted-types/trusted-types-duplicate-names-list-report-only.html
blob: 46ca2edb6fb57b354b3a80f327dbfbe6760f21c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<head>
  <script src="/resources/testharness.js"></script>
  <script src="/resources/testharnessreport.js"></script>
</head>
<body>
<script>
// We assume the following header has been set:
// Content-Security-Policy-Report-Only: trusted-types a b c
// (CSP-Report-Only headers can't be set in <meta> tags.)

test(t => {
  trustedTypes.createPolicy("a", {});
  trustedTypes.createPolicy("a", {});
  trustedTypes.createPolicy("b", {});
  trustedTypes.createPolicy("d", {});
}, "TrustedTypePolicyFactory and policy list in CSP.");

</script>
</body>