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