summaryrefslogtreecommitdiff
path: root/browser/devtools/debugger/test/test-function-search-03.js
diff options
context:
space:
mode:
Diffstat (limited to 'browser/devtools/debugger/test/test-function-search-03.js')
-rw-r--r--browser/devtools/debugger/test/test-function-search-03.js32
1 files changed, 0 insertions, 32 deletions
diff --git a/browser/devtools/debugger/test/test-function-search-03.js b/browser/devtools/debugger/test/test-function-search-03.js
deleted file mode 100644
index e64292a92..000000000
--- a/browser/devtools/debugger/test/test-function-search-03.js
+++ /dev/null
@@ -1,32 +0,0 @@
-/* Any copyright is dedicated to the Public Domain.
- http://creativecommons.org/publicdomain/zero/1.0/ */
-
-window.addEventListener("bogus", function namedEventListener() {
- // Blah! Third source!
-});
-
-try {
- var bar = foo.sub.sub.test({
- a: function A() {
- }
- });
-
- bar.alpha = foo.sub.sub.test({
- b: function B() {
- }
- });
-
- bar.alpha.beta = new X(Y(Z(foo.sub.sub.test({
- c: function C() {
- }
- }))));
-
- this.theta = new X(new Y(new Z(new foo.sub.sub.test({
- d: function D() {
- }
- }))));
-
- var fun = foo = bar = this.t_foo = window.w_bar = function baz() {};
-
-} catch (e) {
-}