Index: test/intl/number-format/format-is-bound.js |
diff --git a/src/extensions/i18n/header.js b/test/intl/number-format/format-is-bound.js |
similarity index 82% |
copy from src/extensions/i18n/header.js |
copy to test/intl/number-format/format-is-bound.js |
index 1c0a2d8874b5aa982ca2be2fb39f2ead1c4a9622..5e4f02010f87e0b112238416a8b61d6c70869e84 100644 |
--- a/src/extensions/i18n/header.js |
+++ b/test/intl/number-format/format-is-bound.js |
@@ -26,16 +26,15 @@ |
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
// limitations under the License. |
-// ECMAScript 402 API implementation is broken into separate files for |
-// each service. The build system combines them together into one |
-// Intl namespace. |
+// Create default NumberFormat. |
+var nf = new Intl.NumberFormat(); |
-/** |
- * Intl object is a single object that has some named properties, |
- * all of which are constructors. |
- */ |
-var Intl = (function() { |
+// Array we want to iterate, actual numbers are not important. |
+var numberArray = [1, 2, 3]; |
-'use strict'; |
+// It shouldn't throw. |
+// The format() method should be properly bound to the nf object. |
+numberArray.forEach(nf.format); |
-var Intl = {}; |
+// Formatting a number should work in a direct call. |
+nf.format(12345); |