summaryrefslogtreecommitdiffstats
path: root/js/src/tests/js1_8_5/extensions/regress-627984-2.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/js1_8_5/extensions/regress-627984-2.js')
-rw-r--r--js/src/tests/js1_8_5/extensions/regress-627984-2.js15
1 files changed, 15 insertions, 0 deletions
diff --git a/js/src/tests/js1_8_5/extensions/regress-627984-2.js b/js/src/tests/js1_8_5/extensions/regress-627984-2.js
new file mode 100644
index 000000000..c4f1b508c
--- /dev/null
+++ b/js/src/tests/js1_8_5/extensions/regress-627984-2.js
@@ -0,0 +1,15 @@
+// Any copyright is dedicated to the Public Domain.
+// http://creativecommons.org/licenses/publicdomain/
+
+// See bug 627984, comment 17, item 2.
+var obj = {};
+var x;
+obj.watch("m", function (id, oldval, newval) {
+ x = this.m;
+ return newval;
+ });
+delete obj.m;
+obj.m = function () { return this.method; };
+obj.m = 2;
+
+reportCompare(0, 0, 'ok');