mirror of
https://github.com/RGBCube/serenity
synced 2025-05-15 09:24:57 +00:00
LibWeb: Fix missing tokenizer state change in RCDATALessThanSign
We can't RECONSUME_IN after we've used EMIT_CHARACTER since we'll have returned from the function.
This commit is contained in:
parent
1a56fe714c
commit
4e71684a3a
1 changed files with 1 additions and 2 deletions
|
@ -1546,8 +1546,7 @@ _StartOfFunction:
|
|||
}
|
||||
ANYTHING_ELSE
|
||||
{
|
||||
EMIT_CHARACTER('<');
|
||||
RECONSUME_IN(RCDATA);
|
||||
EMIT_CHARACTER_AND_RECONSUME_IN('<', RCDATA);
|
||||
}
|
||||
}
|
||||
END_STATE
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue