You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Preserve camelCase for known svg elements (yewstack#3875)
* Fix SVG element casing to preserve camelCase names
SVG elements like feDropShadow were incorrectly converted to lowercase,
breaking their functionality. Now properly preserves casing for known
SVG elements while normalizing regular HTML elements.
Fixes svg filter rendering issue where filters would not display.
* Preserve camelCase for all elements per worldsender's suggestion
* Remove accidentally committed test files
* add pixel color test
* remove extra comments and screenshot tests for now
* adjust lint warning message
---------
Co-authored-by: Martin Molzer <WorldSEnder@users.noreply.github.com>
Copy file name to clipboardExpand all lines: packages/yew-macro/tests/html_lints/fail.stderr
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
warning: The tag 'tExTAreA' is not matching its normalized form 'textarea'. If you want to keep this form, change this to a dynamic tag `@{"tExTAreA"}`.
1
+
warning: The tag 'tExTAreA' is not matching its normalized form 'textarea' and is not a recognized SVG or MathML element. If you want to keep this name, you can use the dynamic tag `@{"tExTAreA"}` to silence this warning.
0 commit comments