LibWeb: Fix SVG tag adjustment for feSpotLight, feTile, feTurbulence

This commit is contained in:
Andreas Kling 2024-11-03 18:34:47 +01:00 committed by Andreas Kling
parent c755a09376
commit ae39c54e51
Notes: github-actions[bot] 2024-11-03 19:33:38 +00:00
3 changed files with 11 additions and 11 deletions

View file

@ -2735,7 +2735,9 @@ void HTMLParser::adjust_svg_tag_names(HTMLToken& token)
{ "feoffset"_fly_string, "feOffset"_fly_string },
{ "fepointlight"_fly_string, "fePointLight"_fly_string },
{ "fespecularlighting"_fly_string, "feSpecularLighting"_fly_string },
{ "fespotlight"_fly_string, "feSpotlight"_fly_string },
{ "fespotlight"_fly_string, "feSpotLight"_fly_string },
{ "fetile"_fly_string, "feTile"_fly_string },
{ "feturbulence"_fly_string, "feTurbulence"_fly_string },
{ "foreignobject"_fly_string, "foreignObject"_fly_string },
{ "glyphref"_fly_string, "glyphRef"_fly_string },
{ "lineargradient"_fly_string, "linearGradient"_fly_string },