summaryrefslogtreecommitdiffstats
path: root/devtools/client/webconsole/test/browser/test-simple-function.js
blob: 9b0d2f55e0c56958c8db036e5186303503563a7c (plain)
1
2
3
4
5
6
7
8
9
10
11
"use strict";

window.test = function() {
  console.log("simple function");
};

window.test_bound_target = function() {
  console.log("simple bound target function");
};

window.test_bound = window.test_bound_target.bind(window);