summaryrefslogtreecommitdiff
path: root/js/src/tests/js1_8_5/extensions/regress-627984-4.js
blob: bbc017ffb06505aea3a0ba2d77cc9ef1a3f0596b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Any copyright is dedicated to the Public Domain.
// http://creativecommons.org/licenses/publicdomain/

// See bug 627984, comment 17, item 3.
var obj = {};
obj.watch("m", function (id, oldval, newval) {
        delete obj.m;
        obj.m = function () {};
        return newval;
    });
delete obj.m;
obj.m = 1;
assertEq(obj.m, 1);

reportCompare(0, 0, 'ok');