Open
Bug 480184
Opened 17 years ago
Updated 5 years ago
Editor undo for whole content replacement should restore selection range
Categories
(Core :: DOM: Editor, enhancement, P5)
Core
DOM: Editor
Tracking
()
UNCONFIRMED
People
(Reporter: yurivkhan, Unassigned)
Details
Attachments
(1 file)
|
967 bytes,
text/html
|
Details |
User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.0.6) Gecko/2009020911 Ubuntu/8.10 (intrepid) Firefox/3.0.6
Build Identifier: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.0.6) Gecko/2009020911 Ubuntu/8.10 (intrepid) Firefox/3.0.6
If a script replaces the whole content of a textarea, this is recorded in the undo stack. When this change is undone, the whole content is selected, no matter what the selection was before the script did its change.
Reproducible: Always
Steps to Reproduce:
1. Open attached test file.
2. Type 'abcdef' into the textarea.
3. Select 'cd'.
4. Press Ctrl+9. (The selected characters are enclosed in parentheses: 'ab(cd)ef'.)
5. Invoke the Undo function.
Actual Results:
The textarea content is restored to 'abcdef', the way it was before step 4.
The whole content is selected.
Expected Results:
The textarea content is restored to 'abcdef', the way it was before step 4.
The letters 'cd' are selected, the way it was before step 4.
Comment 2•5 years ago
|
||
Bulk-downgrade of unassigned, >=5 years untouched DOM/Storage bugs' priority.
If you have reason to believe this is wrong (especially for the severity), please write a comment and ni :jstutte.
Severity: normal → S4
Priority: -- → P5
You need to log in
before you can comment on or make changes to this bug.
Description
•