blob: 9ed560e1359deb2fa02a2d0224105c5670360a90 [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.getTime property "length" has { ReadOnly, DontDelete,
DontEnum } attributes
esid: sec-date.prototype.getseconds
description: Checking ReadOnly attribute
includes: [propertyHelper.js]
---*/
var x = Date.prototype.getTime.length;
verifyNotWritable(Date.prototype.getTime, "length", null, 1);
if (Date.prototype.getTime.length !== x) {
$ERROR('#1: The Date.prototype.getTime.length has the attribute ReadOnly');
}