Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | // Copyright 2012 Mozilla Corporation. All rights reserved. |
michael@0 | 2 | // This code is governed by the BSD license found in the LICENSE file. |
michael@0 | 3 | |
michael@0 | 4 | /** |
michael@0 | 5 | * @description Tests that the option localeMatcher is processed correctly. |
michael@0 | 6 | * @author Norbert Lindenberg |
michael@0 | 7 | */ |
michael@0 | 8 | |
michael@0 | 9 | $INCLUDE("testIntl.js"); |
michael@0 | 10 | |
michael@0 | 11 | testWithIntlConstructors(function (Constructor) { |
michael@0 | 12 | var defaultLocale = new Constructor().resolvedOptions().locale; |
michael@0 | 13 | |
michael@0 | 14 | var validValues = [undefined, "lookup", "best fit", {toString: function () { return "lookup"; }}]; |
michael@0 | 15 | validValues.forEach(function (value) { |
michael@0 | 16 | var supported = Constructor.supportedLocalesOf([defaultLocale], {localeMatcher: value}); |
michael@0 | 17 | }); |
michael@0 | 18 | |
michael@0 | 19 | var invalidValues = [null, 0, 5, NaN, true, false, "invalid"]; |
michael@0 | 20 | invalidValues.forEach(function (value) { |
michael@0 | 21 | var error; |
michael@0 | 22 | try { |
michael@0 | 23 | var supported = Constructor.supportedLocalesOf([defaultLocale], {localeMatcher: value}); |
michael@0 | 24 | } catch (e) { |
michael@0 | 25 | error = e; |
michael@0 | 26 | } |
michael@0 | 27 | if (error === undefined) { |
michael@0 | 28 | $ERROR("Invalid localeMatcher value " + value + " was not rejected."); |
michael@0 | 29 | } else if (error.name !== "RangeError") { |
michael@0 | 30 | $ERROR("Invalid localeMatcher value " + value + " was rejected with wrong error " + error.name + "."); |
michael@0 | 31 | } |
michael@0 | 32 | }); |
michael@0 | 33 | |
michael@0 | 34 | return true; |
michael@0 | 35 | }); |
michael@0 | 36 |