blob: 3f941517e0c78fe315a32a97a2e80d0c927f03ff [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-135
description: >
Object.getOwnPropertyDescriptor returns data desc for functions on
built-ins (Date.prototype.getUTCMilliseconds)
---*/
var desc = Object.getOwnPropertyDescriptor(Date.prototype, "getUTCMilliseconds");
assert.sameValue(desc.value, Date.prototype.getUTCMilliseconds, 'desc.value');
assert.sameValue(desc.writable, true, 'desc.writable');
assert.sameValue(desc.enumerable, false, 'desc.enumerable');
assert.sameValue(desc.configurable, true, 'desc.configurable');