LibWeb: Handle more cases in the SelfClosingStartTag tokenizer state

This commit is contained in:
Andreas Kling 2020-06-01 12:37:28 +02:00
parent 8429551368
commit a775c2c717
Notes: sideshowbarker 2024-07-19 05:54:52 +09:00

View file

@ -834,11 +834,13 @@ _StartOfFunction:
}
ON_EOF
{
TODO();
PARSE_ERROR();
EMIT_EOF;
}
ANYTHING_ELSE
{
TODO();
PARSE_ERROR();
RECONSUME_IN(BeforeAttributeName);
}
}
END_STATE