mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 20:27:45 +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
|
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