Opened 8 years ago

Closed 8 years ago

#14423 closed Bug (wontfix)

cursor seems to be fixed at this position while pressing the arrow key

Reported by: ffvolkmargrimm Owned by:
Priority: Normal Milestone:
Component: General Version:
Keywords: CantFix firefox Cc:

Description

Steps to reproduce

  1. insert following HTML Code to the CKEditor
  2. click at the end of 'test'
  3. press the arrow up key twice

Expected result

cursor in the table

Actual result

cursor is placed at the start of the word 'test' and seems to be fixed at this position while pressing the arrow key

Other details (browser, OS, CKEditor version, installed plugins)

<html lang="de"> <head>

<title></title>

</head> <body> <div> <table>

<tbody>

<tr>

<td>&nbsp;</td>

</tr>

</tbody>

</table> <a href="#">test</a></div> </body> </html>

Change History (1)

comment:1 Changed 8 years ago by Jakub Ś

Keywords: CantFix firefox added
Resolution: wontfix
Status: newclosed
Version: 4.5.7

This is unfortunately Firefox native problem and there is not much we can here. If you try the same with native contenteditable element you will get the same result.

<div style="margin:20px; border:1px solid black; width:500px;" contenteditable="true">
<div>
<table style="border:1px dotted black;">
	<tbody>
		<tr>
			<td>&nbsp;</td>
		</tr>
	</tbody>
</table>
<a href="#">test</a></div>
</div>

Please note however that left arrows moves you to table so it can be used as workaround.

I will have it reported to Firefox team.

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