2014-07-22 01:09:02 +02:00
|
|
|
// Copyright (c) 2012 Ecma International. All rights reserved.
|
2015-07-17 17:42:45 +02:00
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
2014-07-22 01:09:02 +02:00
|
|
|
|
|
|
|
/*---
|
2015-02-10 22:01:39 +01:00
|
|
|
es5id: B.2.6
|
2014-07-22 01:09:02 +02:00
|
|
|
description: >
|
|
|
|
Object.getOwnPropertyDescriptor returns data desc for functions on
|
|
|
|
built-ins (Date.prototype.toGMTString)
|
2015-09-04 22:47:13 +02:00
|
|
|
includes: [propertyHelper.js]
|
|
|
|
|
2014-07-22 01:09:02 +02:00
|
|
|
---*/
|
|
|
|
|
2015-09-04 22:47:13 +02:00
|
|
|
verifyWritable(Date.prototype, "toGMTString");
|
|
|
|
verifyNotEnumerable(Date.prototype, "toGMTString");
|
|
|
|
verifyConfigurable(Date.prototype, "toGMTString");
|