name.js (631B)
1 // |reftest| shell-option(--setpref=atomics_wait_async) skip-if(!this.hasOwnProperty('Atomics')||!xulRuntime.shell) -- Atomics is not enabled unconditionally, requires shell-options 2 // Copyright (C) 2020 Rick Waldron. All rights reserved. 3 // This code is governed by the BSD license found in the LICENSE file. 4 5 /*--- 6 esid: sec-atomics.waitasync 7 description: > 8 Atomics.waitAsync.name is "waitAsync". 9 includes: [propertyHelper.js] 10 features: [Atomics.waitAsync, Atomics] 11 ---*/ 12 13 verifyProperty(Atomics.waitAsync, 'name', { 14 value: 'waitAsync', 15 enumerable: false, 16 writable: false, 17 configurable: true, 18 }); 19 20 reportCompare(0, 0);