mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-22 20:45:14 +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
Notes:
sideshowbarker
2024-07-19 05:49:27 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/4e71684a3a1
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
Reference in a new issue