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