Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8)

Unified Diff: test/intl/date-format/format-is-bound.js

Issue 18687003: Import intl test suite from v8-i18n project (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: test/intl/date-format/format-is-bound.js
diff --git a/src/extensions/i18n/header.js b/test/intl/date-format/format-is-bound.js
similarity index 81%
copy from src/extensions/i18n/header.js
copy to test/intl/date-format/format-is-bound.js
index 1c0a2d8874b5aa982ca2be2fb39f2ead1c4a9622..35bb57a22517eb42aef3f229bb0a4b4307185ab4 100644
--- a/src/extensions/i18n/header.js
+++ b/test/intl/date-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 DateTimeFormat.
+var dtf = new Intl.DateTimeFormat();
-/**
- * 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 dates are not important.
+var dateArray = [Date.now(), Date.now(), Date.now()];
-'use strict';
+// It shouldn't throw.
+// The format() method should be properly bound to the dtf object.
+dateArray.forEach(dtf.format);
-var Intl = {};
+// Formatting a date should work in a direct call.
+dtf.format();

Powered by Google App Engine
This is Rietveld 408576698