Hi all

Not sure if this is a bug or not. Non-character is being treated as a space
even though it's not defined as one. Edge and Safari treat it as an invalid
character.

```javascript
�alert�(1)�
```

In case the characters get mangled:
```javascript
eval("alert"+String.fromCharCode(65534)+"(1)");
```

Cheers
Gareth
_______________________________________________
es-discuss mailing list
es-discuss@mozilla.org
https://mail.mozilla.org/listinfo/es-discuss

Reply via email to