summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Date/prototype/setDate/S15.9.5.36_A2_T1.js
blob: a54d6a167d274d40ee726bfe8a3c456ad816d2c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// 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 "setDate" is 1
esid: sec-date.prototype.setdate
description: The "length" property of the "setDate" is 1
---*/
assert.sameValue(
  Date.prototype.setDate.hasOwnProperty("length"),
  true,
  'Date.prototype.setDate.hasOwnProperty("length") must return true'
);

assert.sameValue(Date.prototype.setDate.length, 1, 'The value of Date.prototype.setDate.length is expected to be 1');

reportCompare(0, 0);