Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (52 - 54 of 11754)

Ticket Resolution Summary Owner Reporter
#16944 worksforme Setting language in inline editor doesn't change language direction in content area. Jakub Ś
Description

Steps to reproduce

  1. Open attached sample
  2. Change language to Arabic

Expected result

Toolbar and contentarea change direction to RTL.

Actual result

Only Toolbar changes direction to RTL. Content area stays in LTR mode.

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

Problem can be worked around by uncommenting this code:

var container = document.getElementById( 'editor1' );
if( languageCode == 'ug' || languageCode == 'fa' || languageCode == 'ar' || languageCode == 'he' )
	container.setAttribute( 'dir', 'rtl');
else
	container.setAttribute( 'dir', 'ltr');
#16943 worksforme Divarea plugin steals focus when bluring the editor. Tomasz Jakut Jakub Ś
Description

Steps to reproduce

  1. Open attached sample
  2. Focus the editor
  3. Try clicking or tabbing to input filed below it.

Expected result

Cursor goes to input field and stays there

Actual result

Cursor goes to input but it is gone after a second or less

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

Problem can be reproduced in Blink and Webkit browsers from CKEditor 4.6.2.

#16938 fixed Extract common PFW tests loop kkrzton Marek Lewandowski
Description

We have an ugly loop in each PFW test suite.

We need to extract this into a reusable code (simply a hleper will do), so that tests are more clean.

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