| OLD | NEW |
| (Empty) |
| 1 // Copyright 2017 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: --icu-timezone-data | |
| 6 // Environment Variables: TZ=Europe/Madrid LC_ALL=de | |
| 7 | |
| 8 assertEquals( | |
| 9 "Sun Dec 31 1989 00:00:00 GMT+0100 (Mitteleuropäische Normalzeit)", | |
| 10 new Date(1990, 0, 0).toString()); | |
| 11 | |
| 12 assertEquals( | |
| 13 "Sat Jun 30 1990 00:00:00 GMT+0200 (Mitteleuropäische Sommerzeit)", | |
| 14 new Date(1990, 6, 0).toString()); | |
| OLD | NEW |