LibWeb: Fail gracefully when reaching the unimplemented part of the AAA

Pages such as https://html5test.com are testing all sorts of weird,
incomplete, and wrong HTML but can be useful or at least interesting for
development - let's try to avoid crashing the process.
This commit is contained in:
Linus Groh 2022-02-15 19:03:08 +00:00 committed by Andreas Kling
parent 892f6394b8
commit 06948df393
Notes: sideshowbarker 2024-07-18 22:57:59 +09:00

View file

@ -1112,8 +1112,7 @@ HTMLParser::AdoptionAgencyAlgorithmOutcome HTMLParser::run_the_adoption_agency_a
}
// FIXME: Implement the rest of the AAA :^)
TODO();
return AdoptionAgencyAlgorithmOutcome::DoNothing;
}
bool HTMLParser::is_special_tag(const FlyString& tag_name, const FlyString& namespace_)