blob: b139aa306017b2504e975e429424a5e24e7e2d7c [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 "setUTCFullYear" has { DontEnum } attributes
esid: sec-date.prototype.setutcfullyear
description: Checking absence of DontDelete attribute
---*/
if (delete Date.prototype.setUTCFullYear === false) {
$ERROR('#1: The Date.prototype.setUTCFullYear property has not the attributes DontDelete');
}
if (Date.prototype.hasOwnProperty('setUTCFullYear')) {
$ERROR('#2: The Date.prototype.setUTCFullYear property has not the attributes DontDelete');
}