summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/trusted-types/TrustedTypePolicyFactory-defaultPolicy.tentative.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/trusted-types/TrustedTypePolicyFactory-defaultPolicy.tentative.html')
-rw-r--r--testing/web-platform/tests/trusted-types/TrustedTypePolicyFactory-defaultPolicy.tentative.html24
1 files changed, 24 insertions, 0 deletions
diff --git a/testing/web-platform/tests/trusted-types/TrustedTypePolicyFactory-defaultPolicy.tentative.html b/testing/web-platform/tests/trusted-types/TrustedTypePolicyFactory-defaultPolicy.tentative.html
new file mode 100644
index 0000000000..7ac09d8bb9
--- /dev/null
+++ b/testing/web-platform/tests/trusted-types/TrustedTypePolicyFactory-defaultPolicy.tentative.html
@@ -0,0 +1,24 @@
+<!DOCTYPE html>
+<script src="/resources/testharness.js" ></script>
+<script src="/resources/testharnessreport.js"></script>
+<script src="support/helper.sub.js"></script>
+<body>
+<script>
+ test(t => {
+ assert_equals(window.trustedTypes.defaultPolicy, null);
+ }, "defaultPolicy with no default created is not an error");
+
+ test(t => {
+ let policy = window.trustedTypes.createPolicy('default', { createHTML: s => s } );
+ assert_true(policy instanceof TrustedTypePolicy);
+ assert_equals(policy, window.trustedTypes.defaultPolicy);
+ }, "defaultPolicy returns the correct default policy");
+
+ test(t => {
+ let foo_policy = window.trustedTypes.createPolicy('foo', { createHTML: s => s } );
+ let default_policy = window.trustedTypes.defaultPolicy;
+ window.trustedTypes.defaultPolicy = foo_policy;
+ assert_equals(window.trustedTypes.defaultPolicy, default_policy);
+ assert_not_equals(window.trustedTypes.defaultPolicy, foo_policy);
+ }, "defaultPolicy is a read-only property");
+</script>