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