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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
let Array_unscopables = Array.prototype[Symbol.unscopables];
let desc = Reflect.getOwnPropertyDescriptor(Array.prototype, Symbol.unscopables);
assertDeepEq(desc, {
value: Array_unscopables,
writable: false,
enumerable: false,
configurable: true
});
assertEq(Reflect.getPrototypeOf(Array_unscopables), null);
let desc2 = Object.getOwnPropertyDescriptor(Array_unscopables, "values");
assertDeepEq(desc2, {
value: true,
writable: true,
enumerable: true,
configurable: true
});
let keys = Reflect.ownKeys(Array_unscopables);
// FIXME: Once bug 1826643 is fixed, change this test so that all
// the keys are in alphabetical order
let expectedKeys = ["at",
"copyWithin",
"entries",
"fill",
"find",
"findIndex",
"findLast",
"findLastIndex",
"flat",
"flatMap",
"includes",
"keys",
"values",
"toReversed",
"toSorted",
"toSpliced"];
if (typeof getBuildConfiguration === "undefined") {
var getBuildConfiguration = SpecialPowers.Cu.getJSTestingFunctions().getBuildConfiguration;
}
if (typeof getRealmConfiguration === "undefined") {
var getRealmConfiguration = SpecialPowers.Cu.getJSTestingFunctions().getRealmConfiguration;
}
if (!getBuildConfiguration().release_or_beta && getRealmConfiguration().enableArrayGrouping) {
expectedKeys.push("group", "groupToMap");
}
assertDeepEq(keys, expectedKeys);
for (let key of keys)
assertEq(Array_unscopables[key], true);
// Test that it actually works
assertThrowsInstanceOf(() => {
with ([]) {
return entries;
}
}, ReferenceError);
{
let fill = 33;
with (Array.prototype) {
assertEq(fill, 33);
}
}
reportCompare(0, 0);
|