blob: a765ec36cc8a3bc7e0652a3dfc722c94c9aa79da [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 "getUTCMonth" has { DontEnum } attributes
esid: sec-date.prototype.getutcmonth
description: Checking absence of ReadOnly attribute
---*/
var x = Date.prototype.getUTCMonth;
if (x === 1)
Date.prototype.getUTCMonth = 2;
else
Date.prototype.getUTCMonth = 1;
if (Date.prototype.getUTCMonth === x) {
$ERROR('#1: The Date.prototype.getUTCMonth has not the attribute ReadOnly');
}