blob: 81802c7474fd7d1da36f01332bc44c915ba15495 [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 "length" property of the "setUTCMonth" is 2
esid: sec-date.prototype.setutcmonth
description: The "length" property of the "setUTCMonth" is 2
---*/
if (Date.prototype.setUTCMonth.hasOwnProperty("length") !== true) {
$ERROR('#1: The setUTCMonth has a "length" property');
}
if (Date.prototype.setUTCMonth.length !== 2) {
$ERROR('#2: The "length" property of the setUTCMonth is 2');
}