blob: 8d593ea2566d99f11072680913c46e79438c55b6 (
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Bug 1432170 - Block alert box and new window open as per the sandbox
allow-scripts CSP</title>
<script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js">
</script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
</head>
<body>
<iframe style="width:100%;" id="testframe"></iframe>
<script>
/* Description of the test:
* We apply the sanbox allow-scripts CSP to the blob iframe and check
* if the alert box and new window open is blocked correctly by the CSP.
*/
var testsToRun = {
block_window_open_test: false,
block_alert_test: false,
block_top_nav_alert_test: false,
};
SimpleTest.waitForExplicitFinish();
SimpleTest.requestFlakyTimeout("have to test that alert dialogue is blocked");
window.addEventListener("message", receiveMessage);
function receiveMessage(event) {
switch (event.data.test) {
case "block_window_open_test":
testsToRun.block_window_open_test = true;
break;
case "block_alert_test":
is(event.data.msg, "alert blocked by CSP", "alert blocked by CSP");
testsToRun.block_alert_test = true;
break;
case "block_top_nav_alert_test":
testsToRun.block_top_nav_alert_test = true;
break;
}
}
var w;
document.getElementById("testframe").src = "file_blob_uri_blocks_modals.html";
w = window.open("file_blob_top_nav_block_modals.html");
// If alert window is not blocked by CSP then event message is not recieved and
// test fails after setTimeout interval of 1 second.
setTimeout(function () {
is(testsToRun.block_top_nav_alert_test, true,
"blob top nav alert should be blocked by CSP");
testsToRun.block_top_nav_alert_test = true;
is(testsToRun.block_alert_test, true,
"alert should be blocked by CSP");
testsToRun.block_alert_test = true;
checkTestsCompleted();
},1000);
function checkTestsCompleted() {
for (var prop in testsToRun) {
// some test hasn't run yet so we're not done
if (!testsToRun[prop]) {
return;
}
}
window.removeEventListener("message", receiveMessage);
w.close();
SimpleTest.finish();
}
</script>
</body>
</html>
|