summaryrefslogtreecommitdiffstats
path: root/js/src/tests/non262/object/bug-1206700.js
blob: 4918bcbec549ce5d97807bd862911370688f66f4 (plain)
1
2
3
4
5
6
7
8
9
10
var x = {};
Reflect.set(x, "prop", 5, Object.prototype);
var y = {};
Reflect.set(y, "prop", 6, Object.prototype);
assertEq(x.hasOwnProperty("prop"), false);
assertEq(y.hasOwnProperty("prop"), false);
assertEq(Object.prototype.hasOwnProperty("prop"), true);
assertEq(Object.prototype.prop, 6);

reportCompare(0, 0, "ok");