1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-16 20:15:07 +00:00

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
parent 1b5b7e3b01
commit e9eba66361

View file

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