blob: fff7deb8cb86b4f1a9b14ca5890f7a7f50f83d3e [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.getTimezoneOffset property "length" has { ReadOnly, !
DontDelete, DontEnum } attributes
esid: sec-date.prototype.gettimezoneoffset
description: Checking DontDelete attribute
---*/
if (delete Date.prototype.getTimezoneOffset.length !== true) {
$ERROR('#1: The Date.prototype.getTimezoneOffset.length property does not have the attributes DontDelete');
}
if (Date.prototype.getTimezoneOffset.hasOwnProperty('length')) {
$ERROR('#2: The Date.prototype.getTimezoneOffset.length property does not have the attributes DontDelete');
}