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