summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/trusted-types/Document-write.tentative.html
blob: 87e9e724699efc3f0edde3afade4cf53ec2c9c3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!DOCTYPE html>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="support/helper.sub.js"></script>
<body>
<script>
  // TrustedHTML assignments do not throw.
  test(t => {
    let p = createHTML_policy(window, 1);
    let html = p.createHTML(INPUTS.HTML);
    document.write(html);
    assert_true(document.body.innerText.indexOf(RESULTS.HTML) !== -1);
  }, "document.write with html assigned via policy (successful transformation).");
</script>