summaryrefslogtreecommitdiff
path: root/js/src/tests/js1_8_5/extensions/regress-627984-5.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/js1_8_5/extensions/regress-627984-5.js')
-rw-r--r--js/src/tests/js1_8_5/extensions/regress-627984-5.js13
1 files changed, 13 insertions, 0 deletions
diff --git a/js/src/tests/js1_8_5/extensions/regress-627984-5.js b/js/src/tests/js1_8_5/extensions/regress-627984-5.js
new file mode 100644
index 0000000..704d842
--- /dev/null
+++ b/js/src/tests/js1_8_5/extensions/regress-627984-5.js
@@ -0,0 +1,13 @@
+// Any copyright is dedicated to the Public Domain.
+// http://creativecommons.org/licenses/publicdomain/
+
+// Bug 627984 comment 11.
+var o = ({});
+o.p = function() {};
+o.watch('p', function() { });
+o.q = function() {}
+delete o.p;
+o.p = function() {};
+assertEq(o.p, void 0);
+
+reportCompare(0, 0, 'ok');