LibWeb/CSS: Remove tiny-oom propagation from CSS Tokenizer

This commit is contained in:
Sam Atkins 2024-07-26 15:11:57 +01:00 committed by Andreas Kling
commit 89c5f25016
Notes: github-actions[bot] 2024-07-26 15:30:20 +00:00
4 changed files with 76 additions and 76 deletions

View file

@ -95,7 +95,7 @@ namespace Web::CSS::Parser {
ErrorOr<Parser> Parser::create(ParsingContext const& context, StringView input, StringView encoding)
{
auto tokens = TRY(Tokenizer::tokenize(input, encoding));
auto tokens = Tokenizer::tokenize(input, encoding);
return Parser { context, move(tokens) };
}