I am trying to convert timestamp in to various time zone's local time and found certain TimeZone are not supporting in Chrome (v76.0.38) but working fine in Mozilla (v68.0.2).
let d = new Date(1567083463);
let n = d.toLocaleString('en-GB', { timeZone: "US/Arizona" });
Uncaught RangeError: Invalid time zone specified: US/Arizona
at Date.toLocaleString ()
Several other timezones are also throwing the same error
US/Alaska
US/Mountain
US/Central
US/East-Indiana
These timezones are officially supported as mentioned in their website Chrome Supported Time Zone Values