summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/trusted-types/idlharness.window.js
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/trusted-types/idlharness.window.js')
-rw-r--r--testing/web-platform/tests/trusted-types/idlharness.window.js16
1 files changed, 16 insertions, 0 deletions
diff --git a/testing/web-platform/tests/trusted-types/idlharness.window.js b/testing/web-platform/tests/trusted-types/idlharness.window.js
new file mode 100644
index 0000000000..07847fdb39
--- /dev/null
+++ b/testing/web-platform/tests/trusted-types/idlharness.window.js
@@ -0,0 +1,16 @@
+// META: script=/resources/WebIDLParser.js
+// META: script=/resources/idlharness.js
+
+idl_test(
+ ['trusted-types'],
+ ['html', 'dom'],
+ idl_array => {
+ idl_array.add_objects({
+ TrustedTypePolicyFactory: ['window.trustedTypes'],
+ TrustedTypePolicy: ['window.trustedTypes.createPolicy("SomeName", { createHTML: s => s })'],
+ TrustedHTML: ['window.trustedTypes.createPolicy("SomeName1", { createHTML: s => s }).createHTML("A string")'],
+ TrustedScript: ['window.trustedTypes.createPolicy("SomeName2", { createScript: s => s }).createScript("A string")'],
+ TrustedScriptURL: ['window.trustedTypes.createPolicy("SomeName3", { createScriptURL: s => s }).createScriptURL("A string")'],
+ });
+ }
+);