Open
Bug 1190941
Opened 10 years ago
Updated 2 years ago
Cannot edit text in textareas inside contenteditable=true
Categories
(Core :: DOM: Editor, defect)
Tracking
()
UNCONFIRMED
People
(Reporter: ben.summers, Unassigned)
Details
(Keywords: testcase)
Attachments
(1 file)
480 bytes,
text/html
|
Details |
User Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.125 Safari/537.36
Steps to reproduce:
Open test case in Firefox 39. Try to edit the text in the text area.
Relevant document structure is
<div contenteditable="true"><div contenteditable="false"><textarea></textarea></div></div>
Actual results:
Impossible to select or edit existing text, can insert at beginning or end.
Expected results:
Textarea should behave like any other textarea.
Comment 2•7 years ago
|
||
Still present in Firefox 61. When this happens, the selection state seems to be corrupt—retrieving `getSelection().focusNode` returns an object printed as `Restricted {}` where accessing any property causes a "Permission denied to access property ..." error. Also, when you try to move across the textarea with the keyboard while in the editable content, `document.activeElement` is still the editable element, even though the cursor is shown inside of the textarea.
This is causing issue for users of ProseMirror, and it'd be wonderful if someone could take a look.
Comment 3•7 years ago
|
||
Just wanted to add my voice to the above, I can confirm working in all other latest releases of major browser vendors. I appreciate this is not the most common use case but would appreciate any update on this bug as it we will have to implement a kludge to fix this in lieu of a fix. Thanks.
Updated•2 years ago
|
Severity: normal → S3
You need to log in
before you can comment on or make changes to this bug.
Description
•