summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/manual-tests/inspector-wrappers/console-alert-this.html
blob: 4b803268cf9b1e7eb41b76bd00fab22250c3f04c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<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>