blob: 6c23ce7600a4412d94c5129f983735b8f66f4f1b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// Copyright (c) 2012 Ecma International. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
es5id: B.2.1
description: >
Object.getOwnPropertyDescriptor returns data desc for functions on
built-ins (Global.escape)
includes: [propertyHelper.js]
---*/
var global = this;
verifyWritable(global, "escape");
verifyNotEnumerable(global, "escape");
verifyConfigurable(global, "escape");
|