summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/trusted-types/eval-no-csp-no-tt-default-policy.tentative.html
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 17:32:43 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 17:32:43 +0000
commit6bf0a5cb5034a7e684dcc3500e841785237ce2dd (patch)
treea68f146d7fa01f0134297619fbe7e33db084e0aa /testing/web-platform/tests/trusted-types/eval-no-csp-no-tt-default-policy.tentative.html
parentInitial commit. (diff)
downloadthunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.tar.xz
thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.zip
Adding upstream version 1:115.7.0.upstream/1%115.7.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/trusted-types/eval-no-csp-no-tt-default-policy.tentative.html')
-rw-r--r--testing/web-platform/tests/trusted-types/eval-no-csp-no-tt-default-policy.tentative.html37
1 files changed, 37 insertions, 0 deletions
diff --git a/testing/web-platform/tests/trusted-types/eval-no-csp-no-tt-default-policy.tentative.html b/testing/web-platform/tests/trusted-types/eval-no-csp-no-tt-default-policy.tentative.html
new file mode 100644
index 0000000000..d36afbc8ac
--- /dev/null
+++ b/testing/web-platform/tests/trusted-types/eval-no-csp-no-tt-default-policy.tentative.html
@@ -0,0 +1,37 @@
+<!DOCTYPE html>
+<html>
+<head>
+ <script nonce="abc" src="/resources/testharness.js"></script>
+ <script nonce="abc" src="/resources/testharnessreport.js"></script>
+ <script nonce="abc" src="support/helper.sub.js"></script>
+ <!-- No CSP header. -->
+</head>
+<body>
+<script>
+ trustedTypes.createPolicy("default", {createScript: s => s + 4});
+ const p = trustedTypes.createPolicy("p", {createScript: s => s});
+
+ test(t => {
+ assert_equals(eval(p.createScript('1+1')), 2);
+ }, "eval of TrustedScript works.");
+
+ test(t => {
+ assert_equals(eval('1+1'), 2);
+ }, "eval of string works and does not call a default policy.");
+
+ test(t => {
+ assert_equals(eval(42), 42);
+ assert_object_equals(eval({}), {});
+ assert_equals(eval(null), null);
+ assert_equals(eval(undefined), undefined);
+ }, "eval of !TrustedScript and !string works.");
+
+ test(t => {
+ assert_equals(new Function(p.createScript('return 1+1'))(), 2);
+ }, "Function constructor of TrustedScript works.");
+
+ test(t => {
+ assert_equals(new Function('return 1+1')(), 2);
+ }, "Function constructor of string works and does not call a default policy.");
+</script>
+