2012-08-27 05:49:25 +02:00
|
|
|
|
// Copyright 2012 Mozilla Corporation. All rights reserved.
|
|
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
|
|
2014-07-22 01:09:02 +02:00
|
|
|
|
/*---
|
2014-07-25 00:41:42 +02:00
|
|
|
|
es5id: 6.4_b
|
2014-07-22 01:09:02 +02:00
|
|
|
|
description: Tests that invalid time zone names are not accepted.
|
|
|
|
|
author: Norbert Lindenberg
|
|
|
|
|
---*/
|
2012-08-27 05:49:25 +02:00
|
|
|
|
|
|
|
|
|
var invalidTimeZoneNames = [
|
|
|
|
|
"",
|
|
|
|
|
"MEZ", // localized abbreviation
|
|
|
|
|
"Pacific Time", // localized long form
|
|
|
|
|
"cnsha", // BCP 47 time zone code
|
|
|
|
|
"invalid", // as the name says
|
|
|
|
|
"Europe/İstanbul", // non-ASCII letter
|
|
|
|
|
"asıa/baku", // non-ASCII letter
|
|
|
|
|
"europe/brußels" // non-ASCII letter
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
invalidTimeZoneNames.forEach(function (name) {
|
2017-05-04 21:12:42 +02:00
|
|
|
|
// this must throw an exception for an invalid time zone name
|
|
|
|
|
assert.throws(RangeError, function() {
|
2012-08-27 05:49:25 +02:00
|
|
|
|
var format = new Intl.DateTimeFormat(["de-de"], {timeZone: name});
|
2017-05-04 21:12:42 +02:00
|
|
|
|
}, "Invalid time zone name " + name + " was not rejected.");
|
2012-08-27 05:49:25 +02:00
|
|
|
|
});
|