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