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