diff options
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.js | 13 |
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 000000000..704d8421c --- /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'); |