We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Firefox specific bug
Due to #6570 react > 15.0.3 populates every element with property is="null"
is="null"
That's caused by weird Firefox behaviour checking the args number of document.createElement. e.g.: document.createElement('a', '') => <a is=""> document.createElement('a', null) => <a is="null"> document.createElement('a', undefined) => <a is="undefined">
document.createElement
document.createElement('a', '')
<a is="">
document.createElement('a', null)
<a is="null">
document.createElement('a', undefined)
<a is="undefined">
Verified with Firefox v46.0.1, react@15.0.3-dev and react@15.1.0
The text was updated successfully, but these errors were encountered:
Sorry, duplicate of #6896
Sorry, something went wrong.
No branches or pull requests
Firefox specific bug
Due to #6570 react > 15.0.3 populates every element with property
is="null"
That's caused by weird Firefox behaviour checking the args number of
document.createElement
.e.g.:
document.createElement('a', '')
=><a is="">
document.createElement('a', null)
=><a is="null">
document.createElement('a', undefined)
=><a is="undefined">
Verified with Firefox v46.0.1, react@15.0.3-dev and react@15.1.0
The text was updated successfully, but these errors were encountered: