// |reftest| skip-if(!this.hasOwnProperty('Temporal')) -- Temporal is not enabled unconditionally // Copyright (C) 2022 Igalia, S.L. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-temporal.timezone description: Time zone names are case insensitive features: [Temporal] ---*/ const timeZone = 'eTc/gMt+1'; const result = new Temporal.TimeZone(timeZone); assert.sameValue(result.toString(), 'Etc/GMT+1', `Time zone created from string "${timeZone}"`); reportCompare(0, 0);