For example, given
`[[File:Foobar.jpg|alt=&]]`
PHP will render this in HTML as alt="&" while HHVM correctly renders alt="&".
This is a bug in the tokenizer, where we take a shortcut in Tokenizer::handleCharRefs() and then turn around and decode the entities again "the long way", leading to a double-decode.