https://www.chromestatus.com/features/4747009953103872 は、Chrome 45 で追加された機能で、sandboxing された iframe の中における popup を抑止する。
具体的な用途は、不躾な広告をブロック など。
<!DOCTYPE html>
<meta http-equiv="Content-Security-Policy" content="sandbox allow-scripts">
<script>
alert("Yay!");
print();
confirm("Question?");
prompt("Question?");
</script>
</html>上記の meta タグに allow-modals を追加すると alert, print, confirm, prompt が利用可能になる。
<meta http-equiv="Content-Security-Policy" content="sandbox allow-scripts allow-modals">