1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-09 09:34:57 +09:00

LibWeb: No need to report that we encountered <svg> or <math>

These things happen, and it's not particularly noteworthy.
This commit is contained in:
Andreas Kling 2021-01-09 15:10:14 +01:00
parent 1d75e82101
commit e08e1a89d9
Notes: sideshowbarker 2024-07-19 00:00:09 +09:00

View file

@ -1671,7 +1671,6 @@ void HTMLDocumentParser::handle_in_body(HTMLToken& token)
}
if (token.is_start_tag() && token.tag_name() == HTML::TagNames::math) {
dbg() << "<math> element encountered.";
reconstruct_the_active_formatting_elements();
adjust_mathml_attributes(token);
adjust_foreign_attributes(token);
@ -1686,7 +1685,6 @@ void HTMLDocumentParser::handle_in_body(HTMLToken& token)
}
if (token.is_start_tag() && token.tag_name() == HTML::TagNames::svg) {
dbg() << "<svg> element encountered.";
reconstruct_the_active_formatting_elements();
adjust_svg_attributes(token);
adjust_foreign_attributes(token);