Make NumberFormat use the ICU currency data, fix bug in NumberFormat
authorhichris123 <hichris123@gmail.com>
Fri, 17 Jul 2015 15:07:55 +0000 (08:07 -0700)
committerCommit bot <commit-bot@chromium.org>
Fri, 17 Jul 2015 15:08:08 +0000 (15:08 +0000)
commitddb5c2d999c5ee6e31c4a9599bb3ddb293cc3f49
tree5c0150e1447aafda76086f52c47acfecf33b87ad
parent8c448805449aa603f5554a39d8fe4ee9ec21d4a8
Make NumberFormat use the ICU currency data, fix bug in NumberFormat

NumberFormat previously just used a min of 0 digits after the decimal and a max of 3. This CL changes it so that we use the ICU currency data, and set the min and max to the number of numbers after the decimal point for each currency.

This CL also fixes a small bug where if the minimum fraction digits is above 3 but the maximum fraction digits isn't set, then it returns with only three numbers after the decimal point.

BUG=435465,473104,304722
LOG=Y

Review URL: https://codereview.chromium.org/1231613006

Cr-Commit-Position: refs/heads/master@{#29734}
AUTHORS
src/i18n.cc
src/i18n.js
test/intl/number-format/check-minimum-fraction-digits.js [new file with mode: 0755]
test/intl/number-format/format-currency.js [new file with mode: 0755]