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 invalid currency codes are not accepted. |
michael@0 | 6 | * @author Norbert Lindenberg |
michael@0 | 7 | */ |
michael@0 | 8 | |
michael@0 | 9 | var invalidCurrencyCodes = [ |
michael@0 | 10 | "", |
michael@0 | 11 | "€", |
michael@0 | 12 | "$", |
michael@0 | 13 | "SFr.", |
michael@0 | 14 | "DM", |
michael@0 | 15 | "KR₩", |
michael@0 | 16 | "702", |
michael@0 | 17 | "ßP", |
michael@0 | 18 | "ınr" |
michael@0 | 19 | ]; |
michael@0 | 20 | |
michael@0 | 21 | invalidCurrencyCodes.forEach(function (code) { |
michael@0 | 22 | var error; |
michael@0 | 23 | try { |
michael@0 | 24 | // this must throw an exception for an invalid currency code |
michael@0 | 25 | var format = new Intl.NumberFormat(["de-de"], {style: "currency", currency: code}); |
michael@0 | 26 | } catch (e) { |
michael@0 | 27 | error = e; |
michael@0 | 28 | } |
michael@0 | 29 | if (error === undefined) { |
michael@0 | 30 | $ERROR("Invalid currency code '" + code + "' was not rejected."); |
michael@0 | 31 | } else if (error.name !== "RangeError") { |
michael@0 | 32 | $ERROR("Invalid currency code '" + code + "' was rejected with wrong error " + error.name + "."); |
michael@0 | 33 | } |
michael@0 | 34 | }); |
michael@0 | 35 |