Closed
Bug 670807
Opened 13 years ago
Closed 13 years ago
Delete doesn't work on last character in contenteditable inline elements (such as spans) nested in another inline element
Categories
(Core :: DOM: Editor, defect)
Tracking
()
VERIFIED
FIXED
mozilla8
People
(Reporter: megabyte, Assigned: kaze)
References
()
Details
(Keywords: reproducible, testcase)
Attachments
(1 file)
945 bytes,
text/html
|
Details |
Bug 439808 fixed most of the problems deleting elements in nested inlines, but a case still exists that does not work. Attempting to delete the last character in a contenteditable inline (which is nested in another inline) does not work when pressing Delete when positioned before the character, though Backspace does function.
Reporter | ||
Updated•13 years ago
|
Summary: Backspace doesn't work on last character in contenteditable inline elements (such as spans) nested in another inline element → Delete doesn't work on last character in contenteditable inline elements (such as spans) nested in another inline element
Reporter | ||
Updated•13 years ago
|
Blocks: contenteditable
Keywords: reproducible,
testcase
Updated•13 years ago
|
Assignee: nobody → kaze
Assignee | ||
Comment 1•13 years ago
|
||
Bug confirmed on Aurora (Fx 7.0a2) but works for me on Nightly (Fx 0.8a1). I couldn’t find the patch that solved this issue.
Status: NEW → RESOLVED
Closed: 13 years ago
Resolution: --- → WORKSFORME
Target Milestone: --- → mozilla8
Version: Trunk → Other Branch
Comment 2•13 years ago
|
||
Fixed by Bug 439808
Reporter | ||
Comment 3•13 years ago
|
||
This bug was filed because Bug 439808 did not fix the full problem, but I can confirm it works now.
Status: RESOLVED → VERIFIED
Comment 4•13 years ago
|
||
I checkd cached m-i hourly, and confirmed this fixed by Bug 439808
Comment 5•13 years ago
|
||
Please ignore comment #2 and comment #4, I misread str.
Fixed range(m-c)
Fails:
http://hg.mozilla.org/mozilla-central/rev/504a1a927d39
Mozilla/5.0 (Windows NT 6.1; WOW64; rv:8.0a1) Gecko/20110725 Firefox/8.0a1 ID:20110725111747
Works:
http://hg.mozilla.org/mozilla-central/rev/982a5835fba1
Mozilla/5.0 (Windows NT 6.1; WOW64; rv:8.0a1) Gecko/20110726 Firefox/8.0a1 ID:20110726025330
Fixed range(m-i)
Fails:
http://hg.mozilla.org/integration/mozilla-inbound/rev/f8768a3e3a9f
Mozilla/5.0 (Windows NT 6.1; WOW64; rv:8.0a1) Gecko/20110725 Firefox/8.0a1 ID:20110725115531
Works:
http://hg.mozilla.org/integration/mozilla-inbound/rev/167f6642efd4
Mozilla/5.0 (Windows NT 6.1; WOW64; rv:8.0a1) Gecko/20110725 Firefox/8.0a1 ID:20110725141505
Pushlog
http://hg.mozilla.org/integration/mozilla-inbound/pushloghtml?fromchange=f8768a3e3a9f&tochange=167f6642efd4
Fixed by:
167f6642efd4 Fabien Cazenave — Bug 688599 - do not expand selection for deletion outside of the active editing host; r=ehsan When a selection in an inline element is to be deleted, it is first expanded to the parent block in order not to leave any empty inline element. This patch ensures that the selection cannot be expanded outside of the contentEditable element (active editing host).
Assignee | ||
Comment 6•13 years ago
|
||
That’s bug 668599 then, thanks for finding out!
Resolution: WORKSFORME → FIXED
Comment 7•13 years ago
|
||
Comment 8•13 years ago
|
||
Verified on:
Mozilla/5.0 (Windows NT 6.0; rv:7.0) Gecko/20100101 Firefox/7.0
Mozilla/5.0 (X11; Linux x86_64; rv:8.0a2) Gecko/20110907 Firefox/8.0a2
Mozilla/5.0 (X11; Linux x86_64; rv:9.0a1) Gecko/20110831 Firefox/9.0a1
STR:
1. Open the attached test case.
2. Place the caret in front of the comma before the last span.(the caret cannot be placed right before the span because of bug #685452)
3. Press the Delete key twice.
Expected Results:
The first key press deletes the space before the last span and the second one deletes the last span.
Actual Results:
The last span (blue letter) cannot be deleted.
Workaround:
Select the last span then press Delete.
Status: VERIFIED → REOPENED
Resolution: FIXED → ---
Reporter | ||
Comment 10•13 years ago
|
||
IMO, another bug should have been filed for that case -- deleting entire spans. This bug was for deleting characters inside of a nested span.
Assignee | ||
Comment 11•13 years ago
|
||
FTR, see bug 685445 and bug 685452 (follow-ups).
Reporter | ||
Comment 12•13 years ago
|
||
Re-resolving since the follow-ups are actually a different problem.
Status: REOPENED → RESOLVED
Closed: 13 years ago → 13 years ago
Resolution: --- → FIXED
Comment 13•13 years ago
|
||
Bug #685799 was filed for the case from comment #8. Marking this one back as closed.
Status: RESOLVED → VERIFIED
You need to log in
before you can comment on or make changes to this bug.
Description
•