-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Expand file tree
/
Copy patheval-no-csp-no-tt.html
More file actions
56 lines (45 loc) · 1.65 KB
/
Copy patheval-no-csp-no-tt.html
File metadata and controls
56 lines (45 loc) · 1.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!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 nonce="abc">
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_equals(eval('1+1'), 2);
}, "eval of string works.");
test(t => {
assert_equals(eval?.('1+1'), 2);
}, "indirect eval of string works.");
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(p.createScript('val'),p.createScript('return val+1'))(1), 2);
}, "Function constructor of all TrustedScripts works.");
test(t => {
assert_equals(new Function('return 1+1')(), 2);
}, "Function constructor of string works.");
test(t => {
assert_equals(new Function('val', 'return val+1')(1), 2);
}, "Function constructor of all strings works.");
test(t => {
assert_equals(new Function('val', p.createScript('return val+1'))(1), 2);
}, "Function constructor of string and TrustedScript works.");
</script>