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