Closed
Bug 1116079
Opened 11 years ago
Closed 11 years ago
Placeholder doesn't appear in documentFragment
Categories
(Core :: DOM: Core & HTML, defect)
Tracking
()
RESOLVED
DUPLICATE
of bug 1088158
People
(Reporter: mike, Unassigned)
Details
Attachments
(1 file)
|
231 bytes,
text/html
|
Details |
User Agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.71 Safari/537.36
Steps to reproduce:
var domNode = document.createDocumentFragment();
var ta = document.createElement('textarea');
ta.placeholder = "Test";
domNode.appendChild(ta);
document.body.appendChild(domNode);
Actual results:
Textarea created without placeholder, placeholder appear after focusing node.
Expected results:
Textatea created with placeholder.
Updated•11 years ago
|
Component: Untriaged → DOM: Core & HTML
Product: Firefox → Core
Comment 1•11 years ago
|
||
I see the problem in Firefox 34 and in a Firefox 35 beta build.
The problem is gone in Firefox 36 Aurora builds and on tip.
Comment 2•11 years ago
|
||
I expect this got fixed by bug 1088158. And indeed, I see the problem in a 2014-10-28 nightly but not a 2014-10-29 one.
Artem, thank you for reporting this! The fix is already checked in, and will be shipping in Firefox 36 at the end of February.
Status: UNCONFIRMED → RESOLVED
Closed: 11 years ago
Resolution: --- → DUPLICATE
You need to log in
before you can comment on or make changes to this bug.
Description
•