Bug 1688168 Comment 1 Edit History

Note: The actual edited comment in the bug view page will always show the original commenter’s name and original timestamp.

I'm seeing the same thing with Arabic as well

`"أهلا".split("")` ->  `Array(4) [ "أ", "ه", "ل", "ا" ]`

`inspect("أهلا".split(""))` 
-> 
```
▼ (4) […]
| 0: "أ"
| 1: "ه"
| 2: "ل"
| 3: "ا"
```
`1` should be `"ل"`
I'm seeing the same thing with Arabic as well

`"أهلا".split("")` ->  `Array(4) [ "أ", "ه", "ل", "ا" ]`

`inspect("أهلا".split(""))` 
-> 
```
▼ (4) […]
| 0: "أ"
| 1: "ه"
| 2: "ل"
| 3: "ا"
```

The collapsed array should be `["ا" , "ل", "ه", "أ"  ]`

Back to Bug 1688168 Comment 1