summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/annexB/built-ins/Date/prototype/getYear/return-value.js
blob: 1df44ae3033d059e9357575b5c210efab64cd7cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// Copyright (C) 2016 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-date.prototype.getyear
es6id: B.2.4.1
es5id: B.2.4
description: >
    Return value for objects with numeric value in [[DateValue]] internal slot
info: |
    1. Let t be ? thisTimeValue(this value).
    2. If t is NaN, return NaN.
    3. Return YearFromTime(LocalTime(t)) - 1900.
---*/

assert.sameValue(new Date(1899, 0).getYear(), -1, '1899: first millisecond');
assert.sameValue(
  new Date(1899, 11, 31, 23, 59, 59, 999).getYear(),
  -1,
  '1899: final millisecond'
);

assert.sameValue(new Date(1900, 0).getYear(), 0, '1900: first millisecond');
assert.sameValue(
  new Date(1900, 11, 31, 23, 59, 59, 999).getYear(),
  0,
  '1900: final millisecond'
);

assert.sameValue(new Date(1970, 0).getYear(), 70, '1970: first millisecond');
assert.sameValue(
  new Date(1970, 11, 31, 23, 59, 59, 999).getYear(),
  70,
  '1970: final millisecond'
);

assert.sameValue(new Date(2000, 0).getYear(), 100, '2000: first millisecond');
assert.sameValue(
  new Date(2000, 11, 31, 23, 59, 59, 999).getYear(),
  100,
  '2000: final millisecond'
);

reportCompare(0, 0);