Opened 10 years ago
Last modified 10 years ago
#12587 confirmed Bug
Text jumps up after removing list
Reported by: | Jakub Ś | Owned by: | |
---|---|---|---|
Priority: | Normal | Milestone: | |
Component: | General | Version: | 4.1.1 |
Keywords: | Blink Webkit | Cc: |
Description
Based on #12323.
Open editor with following content:
<ul> <li>one</li> <li>two</li> </ul> <p>hello</p>
- Select whole list.
- Delete list by pressing backspace.
- Click on line with "hello"
Result: text will jump up to first line.
Change History (2)
comment:1 Changed 10 years ago by
Status: | new → confirmed |
---|
There's a code in editable.js which don't handle autoparagraphing at all. I guess there's a filler char created, because that code tries to put the selection before
<p>
and then moving the selection somewhere else results in removing filler char hence text jump.