We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e4653d commit efcac24Copy full SHA for efcac24
src/renderers/dom/fiber/ReactDOMFiberComponent.js
@@ -931,15 +931,9 @@ var ReactDOMFiberComponent = {
931
// TODO: Do we need to lower case this to get case insensitive matches?
932
var name = attributes[i].name;
933
switch (name) {
934
- // Built-in attributes are whitelisted
935
- // TODO: Once these are gone from the server renderer, we don't need
936
- // this whitelist aynymore.
+ // Built-in SSR attribute is whitelisted
937
case 'data-reactroot':
938
break;
939
- case 'data-reactid':
940
- break;
941
- case 'data-react-checksum':
942
943
// Controlled attributes are not validated
944
// TODO: Only ignore them on controlled tags.
945
case 'value':
0 commit comments