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