blob: cb1a0fca9572a435c35a0c3f3bc022dc67a5069c [file] [log] [blame]
// Any copyright is dedicated to the Public Domain.
// http://creativecommons.org/licenses/publicdomain/
// Bug 627984 description.
var o = Array;
o.p = function() {};
o.watch('p', function() { });
for(var x in o) {
o[x];
}
delete o.p;
o.p = function() {};
assertEq(o.p, void 0);
reportCompare(0, 0, 'ok');