summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/trusted-types/Document-write.tentative.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/trusted-types/Document-write.tentative.html')
-rw-r--r--testing/web-platform/tests/trusted-types/Document-write.tentative.html14
1 files changed, 14 insertions, 0 deletions
diff --git a/testing/web-platform/tests/trusted-types/Document-write.tentative.html b/testing/web-platform/tests/trusted-types/Document-write.tentative.html
new file mode 100644
index 0000000000..87e9e72469
--- /dev/null
+++ b/testing/web-platform/tests/trusted-types/Document-write.tentative.html
@@ -0,0 +1,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>