1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-15 02:04:59 +00:00

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

View file

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