blob: 545f6cffff28f63d41c4b4996ad355ec957b6b22 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
</head>
<body>
<script>
// If the alert box is blocked correctly by the CSP then postMessage will
// send the message and test passes.
var text = "<script>alert(document.domain);window.opener.postMessage("+
"{\"test\": \"block_top_nav_alert_test\", \"msg\": "+
"\"blob top nav alert blocked by CSP\"}, \"*\")<\/script>";
var blob = new Blob([text], {type : 'text/html'});
var url = URL.createObjectURL(blob);
location.href=url;
</script>
</body>
</html>
|