1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
/*
* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/licenses/publicdomain/
* Contributors:
* Gary Kwong
* Jeff Walden
* Jason Orendorff
*/
//-----------------------------------------------------------------------------
var BUGNUMBER = 713944;
var summary =
"Don't assert anything about a shape from the property cache until it's " +
"known the cache entry matches";
print(BUGNUMBER + ": " + summary);
/**************
* BEGIN TEST *
**************/
var accDesc = { set: function() {} };
var dataDesc = { value: 3 };
function f()
{
propertyIsEnumerable = {};
}
function g()
{
propertyIsEnumerable = {};
}
Object.defineProperty(Object.prototype, "propertyIsEnumerable", accDesc);
f();
Object.defineProperty(Object.prototype, "propertyIsEnumerable", dataDesc);
assertEq(propertyIsEnumerable, 3);
f();
assertEq(propertyIsEnumerable, 3);
g();
assertEq(propertyIsEnumerable, 3);
var a = { p1: 1, p2: 2 };
var b = Object.create(a);
Object.defineProperty(a, "p1", {set: function () {}});
for (var i = 0; i < 2; i++)
{
b.p1 = {};
Object.defineProperty(a, "p1", {value: 3});
}
assertEq(b.p1, 3);
assertEq(a.p1, 3);
reportCompare(true, true);
|