blob: f946a01df3772d9e148e7484bd73aaa0c8245226 [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 "setUTCDate" has { DontEnum } attributes
esid: sec-date.prototype.setutcdate
description: Checking DontEnum attribute
---*/
if (Date.prototype.propertyIsEnumerable('setUTCDate')) {
$ERROR('#1: The Date.prototype.setUTCDate property has the attribute DontEnum');
}
for (var x in Date.prototype) {
if (x === "setUTCDate") {
$ERROR('#2: The Date.prototype.setUTCDate has the attribute DontEnum');
}
}