Opened 13 years ago

Last modified 13 years ago

#8462 confirmed Bug

Unnecessary paragraph gets created when trying to join two paragraphs using backspace

Reported by: Jakub Ś Owned by: Webkit
Priority: Normal Milestone:
Component: General Version: 3.0
Keywords: Cc:

Description

Issue reproducible in Webkit from CKEditor 3.0

  1. Paste in the following code
    <p>
    	Line 1<br />
    	Line 2<br />
    	Line 3<br />
    	Line 4</p>
    
  2. Put cursor behind Line 2^ and press ENTER
  3. You will get
    <p>
    	Line 1<br />
    	Line 2</p>
    <p>
    	<br />
    	Line 3<br />
    	Line 4</p>
    
  4. Put the cursor in front of ^Line 3 and press BACKSPACE two times to delete br and 'join two paragraphs'

Result when switching to source in Webkit:

<p>
	Line 1<br />
	Line 2Line 3</p>
<p>
	Line 4</p>

while in other browsers:

<p>
	Line 1<br />
	Line 2Line 3<br />
	Line 4</p>

Change History (1)

comment:1 Changed 13 years ago by Jakub Ś

Status: newconfirmed
Note: See TracTickets for help on using tickets.
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy