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