blob: bca5decd25e9de02d8f5f676913a558890e65aa0 (
plain)
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
|
<!DOCTYPE html>
<html>
<head>
<title>eval-in-iframe</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/common/utils.js"></script>
</head>
<body>
<p>This test checks that the CSP of calleeRealm only (and not of
the callerRealm) is checked for allowing eval.</p>
<script>
let tests = [
{ "directive": "script-src", "csp": "script-src 'unsafe-inline'" },
{ "directive": "default-src", "csp": "default-src 'unsafe-inline'" },
];
tests.forEach(test => {
let child = document.createElement('iframe');
child.src = '/content-security-policy/unsafe-eval/support' +
'/echo-eval-with-policy.py?policy=' + encodeURIComponent(test.csp);
document.body.appendChild(child);
let msg = new Promise(resolve => {
window.addEventListener('message', e => {
if (e.source == child.contentWindow)
resolve(e.data);
});
});
promise_test(async t => {
assert_equals((await msg).evalInIframe, "blocked");
}, `(${test.directive}) Eval code should not execute ` +
`from iframe in iframe`);
promise_test(async t => {
assert_equals((await msg).evalInParent, "allowed");
}, `(${test.directive}) Eval code should execute ` +
`from iframe in parent`);
promise_test(async t => {
assert_throws_js(child.contentWindow.EvalError, _ =>
child.contentWindow.eval('1+1'));
}, `(${test.directive}) Eval code should not execute ` +
`from parent in iframe`);
});
</script>
</body>
</html>
|