summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/intl402/DurationFormat/prototype/constructor/value.js
blob: c984b7829e204998b70104c3bf4c14bdcf6a84ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// |reftest| skip -- Intl.DurationFormat is not supported
// Copyright 2012 Google Inc.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-intl.DurationFormat
description: >
    Tests that Intl.DurationFormat.prototype.constructor is the Intl.DurationFormat.

features: [Intl.DurationFormat]
---*/

assert.sameValue(Intl.DurationFormat.prototype.constructor, Intl.DurationFormat, "Intl.DurationFormat.prototype.constructor is not the same as Intl.DurationFormat");

reportCompare(0, 0);