Tokenizer: Fix invalid state switch in BeforeDOCTYPEName
This commit is contained in:
parent
afbdf9151c
commit
979d8a5e74
1 changed files with 1 additions and 1 deletions
|
@ -170,7 +170,7 @@ export class Tokenizer {
|
||||||
}
|
}
|
||||||
|
|
||||||
this.create(DOCTYPEToken.createWithName(this.currentInputCharacter).startingAt(this.currentPosition));
|
this.create(DOCTYPEToken.createWithName(this.currentInputCharacter).startingAt(this.currentPosition));
|
||||||
this.state = State.DOCTYPE;
|
this.state = State.DOCTYPEName;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue