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