summaryrefslogtreecommitdiff
path: root/test/built-ins/Date/prototype/toUTCString/invalid-date.js
blob: 0f81fe11e05ef89e227caf4b4ab87981e9ac5086 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright (C) 2017 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-date.prototype.toutcstring
description: Invalid Dates are rendered as "Invalid Date"
info: |
  Date.prototype.toUTCString ( )

  ...
  3. If tv is NaN, return "Invalid Date".
  ...
---*/

assert.sameValue(new Date(NaN).toUTCString(), "Invalid Date");