« Bugzilla Issues Index
#4311 — 10.1, 11.1, 12.1: Document that ad hoc intl object creation was removed ?
- bug_id:
4311
- creation_ts:
2015-04-16 14:58:00 -0700
- short_desc:
10.1, 11.1, 12.1: Document that ad hoc intl object creation was removed ?
- delta_ts:
2015-04-16 19:39:08 -0700
- product:
Internationalization - ECMA-402
- component:
Specification
- version:
Edition 2.0 drafts
- rep_platform:
All
- op_sys:
All
- bug_status:
RESOLVED
- resolution:
FIXED
- priority:
Normal
- bug_severity:
normal
- everconfirmed:
true
- reporter:
André Bargull
- assigned_to:
Rick Waldron
- cc:
waldron.rick
- commentid:
14266
- comment_count:
0
- who:
André Bargull
- bug_when:
2015-04-16 14:58:56 -0700
The 402 v1 allowed to turn arbitrary objects in to Intl objects.
For example:
```
var o = {};
Intl.Collator.call(o);
Intl.Collator.prototype.compare.call(o, "a", "A"); // Returns -1
```
This is no longer possible with the 402 v2 spec, should this change be documented?
- commentid:
14269
- comment_count:
1
- who:
Rick Waldron
- bug_when:
2015-04-16 19:39:00 -0700
Annex B created.