Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test has a WPT meta file that expects 1 subtest issues.
- This WPT test may be referenced by the following Test IDs:
- /trusted-types/trusted-types-duplicate-names-list-report-only.tentative.html - WPT Dashboard Interop Dashboard
<!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>