archives

« Bugzilla Issues Index

#4311 — 10.1, 11.1, 12.1: Document that ad hoc intl object creation was removed ?


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?


Annex B created.