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.5
|
2014-07-22 01:09:02 +02:00
|
|
|
description: >
|
|
|
|
Object.getOwnPropertyDescriptor returns data desc for functions on
|
|
|
|
built-ins (Date.prototype.setYear)
|
|
|
|
includes: [runTestCase.js]
|
|
|
|
---*/
|
|
|
|
|
|
|
|
function testcase() {
|
|
|
|
var desc = Object.getOwnPropertyDescriptor(Date.prototype, "setYear");
|
|
|
|
if (desc.value === Date.prototype.setYear &&
|
|
|
|
desc.writable === true &&
|
|
|
|
desc.enumerable === false &&
|
|
|
|
desc.configurable === true) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
runTestCase(testcase);
|