diff options
Diffstat (limited to 'js/src/tests/js1_8_5/extensions/regress-627984-7.js')
-rw-r--r-- | js/src/tests/js1_8_5/extensions/regress-627984-7.js | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/js/src/tests/js1_8_5/extensions/regress-627984-7.js b/js/src/tests/js1_8_5/extensions/regress-627984-7.js new file mode 100644 index 000000000..b13a0e912 --- /dev/null +++ b/js/src/tests/js1_8_5/extensions/regress-627984-7.js @@ -0,0 +1,9 @@ +// Any copyright is dedicated to the Public Domain. +// http://creativecommons.org/licenses/publicdomain/ + +// See bug 627984 comment 20. +var obj = {m: function () {}}; +obj.watch("m", function () { throw 'FAIL'; }); +var f = obj.m; // don't call the watchpoint + +reportCompare(0, 0, 'ok'); |