mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-10 01:59:31 +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: 4e71684a3a
1 changed files with 1 additions and 2 deletions
|
@ -1546,8 +1546,7 @@ _StartOfFunction:
|
||||||
}
|
}
|
||||||
ANYTHING_ELSE
|
ANYTHING_ELSE
|
||||||
{
|
{
|
||||||
EMIT_CHARACTER('<');
|
EMIT_CHARACTER_AND_RECONSUME_IN('<', RCDATA);
|
||||||
RECONSUME_IN(RCDATA);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
END_STATE
|
END_STATE
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue