Opened 9 years ago

Closed 9 years ago

#12756 closed Bug (wontfix)

Ctrl+Shift+Down does not scroll the selection into view in IE

Reported by: Rick Schnorenberg Owned by:
Priority: Normal Milestone:
Component: General Version:
Keywords: Cc:

Description

Steps to Reproduce

  1. Open the nightly demo page
  2. Place your cursor in the top of the document
  3. Press Ctrl+Shift+Down repeatedly

Expected Behavior

The selection expands to the end of the current paragraph and if that location is off the screen the editor scrolls to keep it in view

Actual Behavior

The selection expands correctly but the editor does not scroll

Browser and OS

I have reproduced this on Internet Explorer 8-11. It works perfectly on Chrome, Firefox does not change the selection on Ctrl+Shift+Down so it is N/A there.

Change History (1)

comment:1 Changed 9 years ago by Jakub Ś

Resolution: wontfix
Status: newclosed

Unfortunatelly this is IE issue and it is very similar to PageUp/Down handling. IE inside contenteditable elements doesn't scroll as expected. Please check it with below code.

<div style="margin:20px; border:1px solid black; width:500px; height : 200px; overflow:scroll;" contenteditable="true">	
	<p>test1<br />test<br />test<br />test<br />test<br />test<br />test<br />test<br />test<br />test<br />test<br />
	test<br />test<br />test<br />test<br />test<br />test<br />test<br />test<br />test<br />test<br />test<br />test<br />test<p>
</div>

I'm sorry but there is nothing we can do here.

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