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:
parent
1d75e82101
commit
e08e1a89d9
Notes:
sideshowbarker
2024-07-19 00:00:09 +09:00
Author: https://github.com/awesomekling
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