Bug 1927094 - optimize lineScrollAmount so it doesn't iterate over all tabs, r=mconley
[gecko.git] / js / src / tests / test262 / intl402 / supportedLocalesOf-taint-Array.js
blobca9db6593358ae23885eaf142148f6d6d906a000
1 // Copyright 2012 Mozilla Corporation. All rights reserved.
2 // This code is governed by the BSD license found in the LICENSE file.
4 /*---
5 es5id: 9.2.1_2
6 description: >
7     Tests that the behavior of a List is not affected by adversarial
8     changes to Array.prototype.
9 author: Norbert Lindenberg
10 includes: [testIntl.js]
11 ---*/
13 taintArray();
15 testWithIntlConstructors(function (Constructor) {
16     var defaultLocale = new Constructor().resolvedOptions().locale;
17     var canonicalized = Constructor.supportedLocalesOf([defaultLocale, defaultLocale]);
18     assert.sameValue(canonicalized.length > 1, false, "Canonicalization didn't remove duplicate language tags from locale list.");
19 });
21 reportCompare(0, 0);