blob: 9e7dd4cdcd8ad8d24882866df6b9c9bc2b148816 [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 DontEnum attribute
---*/
if (Date.prototype.propertyIsEnumerable('toTimeString')) {
$ERROR('#1: The Date.prototype.toTimeString property has the attribute DontEnum');
}
for (var x in Date.prototype) {
if (x === "toTimeString") {
$ERROR('#2: The Date.prototype.toTimeString has the attribute DontEnum');
}
}