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