-
Notifications
You must be signed in to change notification settings - Fork 47.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Textarea placeholder isn't shown in IE 11 being rendered using React #6731
Comments
Confirmed... and really weird. I'm trying to reproduce it outside of React and I can't. So I'm not really sure what could be causing this. |
Yet another bug which is automatically fixed by #6406 Demo without fix: https://jsfiddle.net/6tefu8g7/ Can we PLEASE get that PR reviewed/merged. cc @facebook/react-core |
Fixed by #6406. |
@AnderssonChristian |
@syranide pardon? :) |
@AnderssonChristian Brain shortcircuit, I thought you were setting the value to the placerholder text. Yeah I believe the error you're seeing is related to the error mentioned here and fixed. |
I'm seeing this bug again in React 15.3.0 (and also in 15.3.1) Here's a small fiddle displaying the issue: https://jsfiddle.net/94g0kbhp/2/ |
@toonvanacker it worked fine for me in IE11.0.9600.18097 |
I'm seeing this again as well, +1 @toonvanacker |
Yup i think this issue needs to be reopened @jimfb as you can easily reproduce it on the IE11 windows 10. Maybe add a test for it or something? Its the only thing still keeping me on 0.14 ... |
I was able to reproduce this using the latest release, https://jsfiddle.net/pfe7yq65/. I'll reopen this since it's still an issue 👍 |
I was able to reproduce the issue outside of React, see https://jsfiddle.net/vovuant7/ var root = document.getElementById('root');
var textarea = document.createElement('textarea');
textarea.setAttribute('placeholder', 'Testing 1, 2, 3');
textarea.textContent = '';
root.appendChild(textarea) The issue is that we are calling Setting I'll look into this more. |
It looks like this may still be an issue rearing it's ugly head again. We are using React 15.4.1 and are seeing this behavior in ie11. |
@Lkroner The bug was fixed in master, not in 15.4.1. This should now be fixed in 15.4.2. |
Has there been a regression in 16.0.0? I'm getting this issue in IE11 Windows 10. |
Please file a new issue with details. Old issues have a lot of outdated info and are hard to track. |
Nikolai Mavrenkov already created a good description of the problem on Stack Overflow: http://stackoverflow.com/questions/36893449/textarea-placeholder-isnt-shown-in-ie-11-being-rendered-using-react
I just can confirm it breaks in IE11, but works in IE10 (and other browsers) with React v15.0.2.
The text was updated successfully, but these errors were encountered: