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