Description
Do you want to request a feature or report a bug?
Report a bug.
What is the current behavior?
Whenever I render SVG elements that are camel cased (e.g. <linearGradient />
) on the server side, I get the following warning:
Warning: <linearGradient /> is using uppercase HTML. Always use lowercase HTML tags in React.
What is the expected behavior?
Warnings should be consistent with the client side rendering, if possible. In this case, I'd expect no warning, since using camel cased SVG element names is pretty standard.
For client side rendering, there seems to be a check for the current namespace:
react/src/renderers/dom/fiber/ReactDOMFiberComponent.js
Lines 344 to 352 in efcac24
For server side rendering, there seems to be currently no such check in place:
react/src/renderers/shared/server/ReactPartialRenderer.js
Lines 537 to 544 in 81706ee
Which versions of React, and which browser / OS are affected by this issue? Did this work in previous versions of React?
Hitting this on 16.0.0-beta.5. Was not hitting it on 15.6.1, the version I was previously on.
Thanks in advance.