1--TEST--
2Bug #73817 (Incorrect entries in get_html_translation_table)
3--FILE--
4<?php
5$entities = get_html_translation_table( HTML_ENTITIES, ENT_QUOTES | ENT_HTML5);
6foreach ($entities as $entity) {
7    if (substr($entity, -1) !== ';') {
8        var_dump($entity);
9    }
10}
11?>
12===DONE===
13--EXPECT--
14===DONE===
15