Iban Eguia Moraza 53df4bc69a
Fixed #3545
2022-05-31 16:28:31 +02:00

18 lines
646 B
JavaScript

// 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: Test for Temporal.TimeZone subclassing.
features: [Temporal]
---*/
class CustomTimeZone extends Temporal.TimeZone {
}
const instance = new CustomTimeZone("UTC");
assert.sameValue(instance.toString(), "UTC");
assert.sameValue(Object.getPrototypeOf(instance), CustomTimeZone.prototype, "Instance of CustomTimeZone");
assert(instance instanceof CustomTimeZone, "Instance of CustomTimeZone");
assert(instance instanceof Temporal.TimeZone, "Instance of Temporal.TimeZone");