···105105 break
106106107107 case AFTER_ATTR_NAME: // https://html.spec.whatwg.org/multipage/parsing.html#after-attribute-name-state
108108- if (c === '\t' || c === '\n' || c === '\f' || c === ' ' || c === '/') {
108108+ if (c === '\t' || c === '\n' || c === '\f' || c === ' ') {
109109 } else if (c === '/') state = SELF_CLOSING_START_TAG
110110 else if (c === '=') state = BEFORE_ATTR_VALUE
111111 else if (c === '>') state = DATA