2017-02-07 17:17:31 +01:00
|
|
|
// Copyright (C) 2015 André Bargull. All rights reserved.
|
|
|
|
// Copyright (C) 2017 Mozilla Corporation. All rights reserved.
|
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
|
|
|
|
/*---
|
2018-06-28 22:13:01 +02:00
|
|
|
esid: sec-atomics.notify
|
2017-02-07 17:17:31 +01:00
|
|
|
description: >
|
2018-06-28 22:20:22 +02:00
|
|
|
Atomics.notify.name is "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:15:01 +02:00
|
|
|
verifyProperty(Atomics.notify, 'name', {
|
2018-06-28 22:20:22 +02:00
|
|
|
value: 'notify',
|
2018-05-17 20:06:22 +02:00
|
|
|
enumerable: false,
|
|
|
|
writable: false,
|
|
|
|
configurable: true,
|
|
|
|
});
|