haikuwebkit/ManualTests/inspector-wrappers/console-alert-this.html

18 lines
410 B
HTML

<html>
<head>
<script src="inspector-wrappers-test-utils.js"></script>
<script>
window.alert = function(consolePanel) {
var _addMessage = consolePanel.addMessage;
consolePanel.addMessage = function() {
doAttack(consolePanel.addMessage);
consolePanel.addMessage = _addMessage;
}
}
</script>
</head>
<body>
<script>instructions({console: true, trigger: "alert(this)"});</script>
</body>
</html>