summaryrefslogtreecommitdiff
path: root/browser/devtools/webconsole/test/test-bug-766001-console-log.js
blob: 8f6a3bb9ca1436b7f0e6d863a807e636365c5669 (plain)
1
2
3
4
5
6
7
8
9
10
/*
 * Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/
 */

function onLoad123() {
  console.log("Blah Blah");
}

window.addEventListener("load", onLoad123, false);