Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test has a WPT meta file that expects 10 subtest issues.
- This WPT test may be referenced by the following Test IDs:
- /trusted-types/eval-csp-tt-no-default-policy.html - WPT Dashboard Interop Dashboard
<!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>
<meta http-equiv="Content-Security-Policy" content="require-trusted-types-for 'script';">
</head>
<body>
<script>
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?.(p.createScript('1+1')), 2);
}, "indirect eval of TrustedScript works.");
test(t => {
assert_throws_js(EvalError, _ => eval('1+1'));
}, "eval of string fails.");
test(t => {
assert_throws_js(EvalError, _ => eval?.('1+1'));
}, "indirect eval of string fails.");
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_throws_js(EvalError, _ => new Function('return 1+1')());
}, "Function constructor of string fails.");
test(t => {
assert_equals(new Function(p.createScript('val'),p.createScript('return val+1'))(1), 2);
}, "Function constructor of all TrustedScripts works.");
test(t => {
assert_throws_js(EvalError, _ => new Function('val', 'return val+1')(1));
}, "Function constructor of all strings fails.");
test(t => {
assert_throws_js(EvalError, _ => new Function('val', p.createScript('return val+1'))(1));
}, "Function constructor of string and TrustedScript fails.");;
const AsyncFunction = async function() {}.constructor;
const GeneratorFunction = function*() {}.constructor;
const AsyncGeneratorFunction = async function*() {}.constructor;
test(t => {
assert_throws_js(EvalError, _ => new AsyncFunction('return 1+1')());
}, "AsyncFunction constructor of string fails.");
test(t => {
assert_throws_js(EvalError, _ => new GeneratorFunction('return 1+1')());
}, "GeneratorFunction constructor of string fails.");
test(t => {
assert_throws_js(EvalError, _ => new AsyncGeneratorFunction('return 1+1')());
}, "AsyncGeneratorFunction constructor of string fails.");
</script>