5

Why does the following string of characters crash Google Chrome on a Mac?

problematic string
The actual string can be found on this jsbin

I've read all about it but nobody has given any answer as to why it actually happens.

Does anybody actually know why this happens and can explain?

2
  • Do you have the hex values? The characters don't render at all on Android Chrome.
    – Chris J
    Mar 21 '15 at 21:21
  • @ChrisJ It's 71D 718 71A 722 722 20 712 71D 72C 20 710 726 72A 71D 721
    – Anonymous
    Mar 21 '15 at 21:53
1

It is not publicly known why this happens, but Google is aware of the issue. If you're really interested, you could look into the crash report shown on that thread and try to investigate.

There are workarounds available by downloading certain fonts such as Syriac or Thaana, so the problem could be simply that the rendering of that character sequence is not supported by the default fonts installed when using Chrome on a Mac.

1
  • That's highly unlikely, considering that absence of font support with multibyte characters hasn't inflicted something as severe as browser crashes in Chromium before. If I were to take a loose guess, I'd say it might be a combination of architecture-specific Unicode handling (meaning the way Chrome interprets some script-specific character rendering is reliant on the underlying locale support of the running system, explaining why Mac OS is the one being affected). A memory allocation routine might've stubbed its toe on an edge somewhere. In either case, it's now been fixed in 41.0.2272.104
    – user458541
    Mar 25 '15 at 0:57

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

Not the answer you're looking for? Browse other questions tagged or ask your own question.