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