Browse Source

LibWeb/HTML: MathML's <ms> is a special tag

This is an omission I noticed while browsing some code :^)
Jamie Mansfield 11 tháng trước cách đây
mục cha
commit
b3fa8f0ce2
1 tập tin đã thay đổi với 1 bổ sung0 xóa
  1. 1 0
      Userland/Libraries/LibWeb/HTML/Parser/HTMLParser.cpp

+ 1 - 0
Userland/Libraries/LibWeb/HTML/Parser/HTMLParser.cpp

@@ -1654,6 +1654,7 @@ bool HTMLParser::is_special_tag(FlyString const& tag_name, Optional<FlyString> c
             MathML::TagNames::mi,
             MathML::TagNames::mo,
             MathML::TagNames::mn,
+            MathML::TagNames::ms,
             MathML::TagNames::mtext,
             MathML::TagNames::annotation_xml);
     }