haikuwebkit/ManualTests/inspector-wrappers/console-alert-document-body...

15 lines
278 B
HTML

<html>
<head>
<script src="inspector-wrappers-test-utils.js"></script>
<script>
window.alert = function(msg) {
msg.titleInfo = doAttack;
return msg;
}
</script>
</head>
<body>
<script>instructions({console: true, trigger: "alert(document.body)"});</script>
</body>
</html>