LibWeb: Adjust foreignobject to foreignObject in HTML parser

This conversion was missing from the table we copied from the spec
for whatever reason.
This commit is contained in:
Andreas Kling 2022-11-10 11:40:01 +01:00
commit e9eba66361
Notes: sideshowbarker 2024-07-17 09:49:48 +09:00

View file

@ -2131,6 +2131,7 @@ void HTMLParser::adjust_svg_tag_names(HTMLToken& token)
token.adjust_tag_name("fepointlight", "fePointLight"); token.adjust_tag_name("fepointlight", "fePointLight");
token.adjust_tag_name("fespecularlighting", "feSpecularLighting"); token.adjust_tag_name("fespecularlighting", "feSpecularLighting");
token.adjust_tag_name("fespotlight", "feSpotlight"); token.adjust_tag_name("fespotlight", "feSpotlight");
token.adjust_tag_name("foreignobject", "foreignObject");
token.adjust_tag_name("glyphref", "glyphRef"); token.adjust_tag_name("glyphref", "glyphRef");
token.adjust_tag_name("lineargradient", "linearGradient"); token.adjust_tag_name("lineargradient", "linearGradient");
token.adjust_tag_name("radialgradient", "radialGradient"); token.adjust_tag_name("radialgradient", "radialGradient");