summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/trusted-types/TrustedTypePolicyFactory-createPolicy-cspTests-none.tentative.html
blob: 48c75937ead158af880674f9781409e5a07c0aa2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<script src="/resources/testharness.js" ></script>
<script src="/resources/testharnessreport.js"></script>
<script src="support/helper.sub.js"></script>
<meta http-equiv="Content-Security-Policy" content="trusted-types 'none'">
<body>
<script>
  test(t => {
    assert_throws_js(TypeError, _ => {
      window.trustedTypes.createPolicy('SomeName', { createHTML: s => s } );
    });
  }, "Cannot create policy with name 'SomeName' - policy creation throws");

  test(t => {
    assert_throws_js(TypeError, _ => {
      window.trustedTypes.createPolicy('default', { createHTML: s => s } );
    });
  }, "Cannot create policy with name 'default' - policy creation throws");
</script>