samples/allow-popups-to-escape-sandbox/popup.html

13 строки
187 B
HTML

<!DOCTYPE html>
<html>
<body>
<p>I'm NOT allowed to execute JavaScript.</p>
<script>
document.querySelector('p').textContent = "I can execute JavaScript.";
</script>
</body>
</html>