REOPENED 78053
Deleting an empty blockquote should keep a placeholder
https://bugs.webkit.org/show_bug.cgi?id=78053
Summary Deleting an empty blockquote should keep a placeholder
Ryosuke Niwa
Reported 2012-02-07 16:10:45 PST
Press backspace inside the backspace in the following markup: <div>hello</div> <blockquote><br></blockquote> <div>world</div> WebKit generates: <div>hello</div> <div>world</div> But it should be: <div>hello</div> <br> <div>world</div> or its variants instead.
Attachments
Fixes the bug (13.38 KB, patch)
2012-02-08 20:11 PST, Ryosuke Niwa
no flags
Ryosuke Niwa
Comment 2 2012-02-07 16:29:37 PST
It appears that we just need to generalize CompositeEditCommand::breakOutOfEmptyMailBlockquotedParagraph.
Ryosuke Niwa
Comment 3 2012-02-08 20:11:10 PST
Created attachment 126230 [details] Fixes the bug
Ryosuke Niwa
Comment 4 2012-02-08 20:12:01 PST
It turned out that the current behavior matches both IE and Opera. The only browser that exhibits the "desired" behavior is Firefox.
Aryeh Gregor
Comment 5 2012-03-01 12:31:48 PST
When you're at the beginning of an indented block and hit Backspace, browsers don't outdent, but word processors do. (Tested in at least Google Docs and LibreOffice, pretty sure it's true in Word too.) This matches the behavior of list items, and I think it's logical. I think browsers should change to match word processors here, so backspace at the start of an indented block should outdent. This is what my spec currently requires, although if implementers really don't want it, I can change it.
Note You need to log in before you can comment on or make changes to this bug.