summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Date/prototype/getDate/S15.9.5.14_A2_T1.js
blob: 48dc9be48d5fe05ad3a94e4dc2e65d4df35a44ef (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 "getDate" is 0
esid: sec-date.prototype.getdate
description: The "length" property of the "getDate" is 0
---*/
assert.sameValue(
  Date.prototype.getDate.hasOwnProperty("length"),
  true,
  'Date.prototype.getDate.hasOwnProperty("length") must return true'
);

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

reportCompare(0, 0);