mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 22:14:58 +00: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:
parent
1d75e82101
commit
e08e1a89d9
1 changed files with 0 additions and 2 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue