blob: 732b31e0b971dd500b568f81e53b5bf6e61e724d [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: B.2.4
description: >
Object.getOwnPropertyDescriptor returns data desc for functions on
built-ins (Date.prototype.getYear)
includes: [propertyHelper.js]
---*/
verifyProperty(Date.prototype, "getYear", {
enumerable: false,
writable: true,
configurable: true
});