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