blob: 3a5449311981f7e1fcb6d2a2163faf0a1ef30b96 [file] [log] [blame]
// Copyright (c) 2012 Ecma International. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
es5id: 15.2.3.3-4-110
description: >
Object.getOwnPropertyDescriptor returns data desc for functions on
built-ins (Math.round)
---*/
var desc = Object.getOwnPropertyDescriptor(Math, "round");
assert.sameValue(desc.value, Math.round, 'desc.value');
assert.sameValue(desc.writable, true, 'desc.writable');
assert.sameValue(desc.enumerable, false, 'desc.enumerable');
assert.sameValue(desc.configurable, true, 'desc.configurable');