Source code

Revision control

Copy as Markdown

Other Tools

// |reftest| skip -- Intl.DurationFormat is not supported
// Copyright 2022 Igalia, S.L. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-Intl.DurationFormat
description: >
Verifies the NewTarget check for Intl.DurationFormat.
info: |
Intl.DurationFormat ([ locales [ , options ]])
(...)
1. If NewTarget is undefined, throw a TypeError exception.
features: [Intl.DurationFormat]
---*/
assert.sameValue(typeof Intl.DurationFormat, "function");
assert.throws(TypeError, function() {
Intl.DurationFormat();
});
assert.throws(TypeError, function() {
Intl.DurationFormat("en");
});
assert.throws(TypeError, function() {
Intl.DurationFormat("not-valid-tag");
});
reportCompare(0, 0);