blob: d123be9b5e418d9536295b6e9c259c637943ab66 [file] [log] [blame]
// 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.gettime
es6id: 20.3.4.10
description: Return value for invalid date
info: |
1. Return ? thisTimeValue(this value).
---*/
assert.sameValue(new Date(NaN).getTime(), NaN);