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.1
|
2014-07-22 01:09:02 +02:00
|
|
|
description: >
|
|
|
|
Object.getOwnPropertyDescriptor returns data desc for functions on
|
|
|
|
built-ins (Global.escape)
|
|
|
|
includes:
|
|
|
|
- fnGlobalObject.js
|
2015-09-04 22:47:13 +02:00
|
|
|
- propertyHelper.js
|
2014-07-22 01:09:02 +02:00
|
|
|
---*/
|
|
|
|
|
2015-09-04 22:47:13 +02:00
|
|
|
var global = fnGlobalObject();
|
|
|
|
|
|
|
|
verifyWritable(global, "escape");
|
|
|
|
verifyNotEnumerable(global, "escape");
|
|
|
|
verifyConfigurable(global, "escape");
|