2017-02-07 17:17:31 +01:00
|
|
|
// Copyright (C) 2017 Mozilla Corporation. All rights reserved.
|
|
|
|
// This code is governed by the license found in the LICENSE file.
|
|
|
|
|
|
|
|
/*---
|
2018-06-28 22:13:01 +02:00
|
|
|
esid: sec-atomics.notify
|
2018-06-28 22:15:01 +02:00
|
|
|
description: Testing descriptor property of Atomics.notify
|
2017-02-07 17:17:31 +01:00
|
|
|
includes: [propertyHelper.js]
|
2018-03-20 00:51:32 +01:00
|
|
|
features: [Atomics]
|
2017-02-07 17:17:31 +01:00
|
|
|
---*/
|
|
|
|
|
2018-06-28 22:20:22 +02:00
|
|
|
verifyProperty(Atomics, 'notify', {
|
2018-05-17 20:06:22 +02:00
|
|
|
enumerable: false,
|
|
|
|
writable: true,
|
|
|
|
configurable: true,
|
|
|
|
});
|