blob: bfc30f43908f02f66fdeeea054bee9afaa5a94c9 [file] [log] [blame]
// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-date.prototype.getfullyear
info: The Date.prototype property "getFullYear" has { DontEnum } attributes
es5id: 15.9.5.10_A1_T2
description: Checking absence of DontDelete attribute
---*/
if (delete Date.prototype.getFullYear === false) {
$ERROR('#1: The Date.prototype.getFullYear property has not the attributes DontDelete');
}
if (Date.prototype.hasOwnProperty('getFullYear')) {
$ERROR('#2: The Date.prototype.getFullYear property has not the attributes DontDelete');
}