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:
Andreas Kling 2020-06-05 12:02:30 +02:00
parent 1a56fe714c
commit 4e71684a3a
Notes: sideshowbarker 2024-07-19 05:49:27 +09:00

View file

@ -1546,8 +1546,7 @@ _StartOfFunction:
}
ANYTHING_ELSE
{
EMIT_CHARACTER('<');
RECONSUME_IN(RCDATA);
EMIT_CHARACTER_AND_RECONSUME_IN('<', RCDATA);
}
}
END_STATE