| OLD | NEW |
| (Empty) | |
| 1 // Copyright 2015 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 // Flags: --fixed-date=42940800 |
| 6 |
| 7 var Jan1_2014_millis = 1388534400000; |
| 8 var fixed_date_secs = 42940800; |
| 9 assertEquals(Date.now(), Jan1_2014_millis + fixed_date_secs * 1000); |
| 10 assertEquals(Date.now(), Jan1_2014_millis + fixed_date_secs * 1000); |
| 11 assertEquals(new Date().valueOf(), Jan1_2014_millis + fixed_date_secs * 1000); |
| OLD | NEW |