2016-09-28 19:53:50 +02:00
|
|
|
// Copyright (C) 2016 Jordan Harband. All rights reserved.
|
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
|
|
|
|
/*---
|
|
|
|
esid: sec-other-properties-of-the-global-object-global
|
2016-10-07 19:34:11 +02:00
|
|
|
description: "'global' should be writable, non-enumerable, and configurable"
|
2016-09-28 19:53:50 +02:00
|
|
|
author: Jordan Harband
|
|
|
|
includes: [propertyHelper.js]
|
|
|
|
---*/
|
|
|
|
|
|
|
|
verifyNotEnumerable(this, 'global');
|
|
|
|
verifyWritable(this, 'global');
|
|
|
|
verifyConfigurable(this, 'global');
|