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