Hi,
>> When I debug in Firefox the locale is "en". So when I even try
>>
>> var g11nWorkingInstance:Collator = new flash.globalization.Collator("en",
>> CollatorMode.SORTING);
>>
>> my example will crash in Chrome (but works in Firefox).
>
> Even when if you try setStyle("locale", LocaleID.DEFAULT) on the sort field
> before sorting?
Yes. The following code will crash:
private function getCollator():void
{
setStyle("locale", LocaleID.DEFAULT);
const locale:* = getStyle("locale");
var g11nWorkingInstance:Collator = new
flash.globalization.Collator(locale, CollatorMode.SORTING);
}