Backed out changeset a5ff95602119 (bug 1905021) as requested for causing accessibilit...
[gecko.git] / js / src / tests / test262 / built-ins / WeakSet / weakset.js
blob06e46a27e310d29d6d1b69225ac1375a170096d4
1 // Copyright (C) 2015 the V8 project authors. All rights reserved.
2 // This code is governed by the BSD license found in the LICENSE file.
3 /*---
4 esid: sec-weakset-iterable
5 description: >
6   WeakSet ( [ iterable ] )
8   17 ECMAScript Standard Built-in Objects
9 includes: [propertyHelper.js]
10 ---*/
12 verifyNotEnumerable(this, 'WeakSet');
13 verifyWritable(this, 'WeakSet');
14 verifyConfigurable(this, 'WeakSet');
16 reportCompare(0, 0);