Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (1601 - 1700 of 2646)

Ticket Summary Keywords Owner Type Status Priority
#5280 Vertical scroll bounces up when clicking in-between the vertical scroll bar and the bottom arrow IE Frederico Caldeira Knabben Bug closed Normal
Description

XP + IE6

It happens at http://ckeditor.com/demo

When I click in-between the vertical scroll bar and the bottom arrow, the page scrolls down but bounces back. The same goes when I click in-between the vertical scroll bar and the top arrow.

Additional reproduction scenario moved from #5581:

In ie7, I go to http://ckeditor.com/demo

Click on the word Red in little red riding hood, just put the cursor somewhere there by clicking on the text.

Use the scrollbar to scroll down (down button on scrollbar, not the scrollbar itself, use down button).

Cannot scroll down, the focus jumps back to the cursor at the top of the page, so the whole page jumps back upwards.

This is a serious problem for my customer as they can only use IE7.
#5287 additional configuration options for SCAYT Confirmed Review+ Task closed Normal
Description

Completely address #4411 bug.

#5290 Create a editor.getStylesSet function Confirmed Review+ Alfonso Martínez de Lizarrondo Task closed Normal
Description

Currently both the styleCombo and the div dialog include code to check the config data and request the load of the styles data.

In the future other dialogs should have also the same combo like the div, and also it should be possible to manually add extra styles to the data for example by parsing the css file.

In order to do that the first step should be to simplify the loading of the styles data. Instead of doing

 // Reuse the 'stylescombo' plugin's styles definition.
 customStylesConfig =  editor.config.stylesCombo_stylesSet,
 stylesSetName = customStylesConfig && customStylesConfig.split( ':' )[ 0 ];

if ( stylesSetName )
{
	CKEDITOR.stylesSet.load( stylesSetName,
		function( stylesSet )
		{
			var stylesDefinitions = stylesSet[ stylesSetName ],

we should provide a function that abstracts that code to

editor.getStyles( function( stylesDefinitions )
{
#5292 Preview in font-size and font-family doesn't work with custom styles Review+ Alfonso Martínez de Lizarrondo Bug closed Normal
Description

Using the XHTML sample in #5024, the previews of font-size and font-family doesn't reflect the current values.

#5296 [IE] In a pre tag, after hitting enter, the caret does not show up in a new line IE Bug closed Normal
Description

To reproduce

[IE]

  • Open the demo and switch to source mode.
  • Insert the following content and place the caret as marked:
    <div><pre>Text^</pre></div>
    
  • Hit 'Enter'.

Notice that the caret is going back to the stat of the line.

  • Write some text.

Notice that the text is written in a new line.

#5298 Up/Down Arrow Key in IE8 stops on certain paragraphs IE Bug confirmed Normal
Description

Browser: IE8, OS: WinXP

Occurs in demo page ( 'Little Red Riding Hood' )

When you use the up/down arrow keys to navigate through the Text, the caret will stop at the end of the first <p>-Paragraph.

The next step would be to jump into the table on the right.

Same happens at the end of the positioned table back to the second Paragraph, and also on your way back up.

#5302 enterMode=ENTER_P is not respected when inside a DIV IBM Confirmed Review+ Garry Yao New Feature closed Normal
Description

To reproduce:

Add the following source:

<div>Test Value</div>

Then attempt to add new lines to the content.

<div>Test Value</div>
<div>Test Value</div>

New DIV elements are added instead of P elements as set in configuration.

The expectation is that with enterMode=ENTER_P that a new paragraph be added after the DIV.

<div>Test Value</div>
<p>Test Value</p>

This is more than an inconvenience to users now as we provide styled components in the editor content that are made up of DIV elements, that we don't want to be copied whenever a user uses the Enter key after the div.

#5307 Customizing multi-tab dialog to show only one tab doesn't work IBM Confirmed Review+ Garry Yao Bug closed Normal
Description

Take the Find dialog as an example. Customize it by hiding the Replace tab and leaving only the Replace tab visible:

replaceTab.hidden=true;
dialogDefinition.dialog.parts.dialog.addClass('cke_single_page'); 

This results in a single Find tab appearing in the dialog, but the tab can be accessed with keyboard and when navigating using arrows, an error occurs and the content of the dialog becomes blank.

#5310 Indented lists are not displaying correctly IBM Confirmed Review+ Garry Yao Bug closed Normal
Description

To reproduce the defcet

  1. Open ajax sample.
  1. Add a Multi level numbered list to the editor.
  1. Go to HTML Source and Apply some indentation to the list
  1. Switch back to normal mode.

Problem: The indented list does not display with the correct formatting.

Switching back to source mode , you can see that some <br> tags have been added to the html for the list items

#5319 Replace Option with Match Whole Word Option checked is not working properly IBM Confirmed Review+ Garry Yao Bug closed Normal
Description

To reproduce the defect:

  1. Open ajax sample.
  1. Type few words(find and replace, finder,replacer,finding,replacing)
  1. Click on "Replace" button.
  1. Fill in contents in replace tab, make sure that the Match Whole Word option is not checked,Fill in Find: field with replace and Replace With: field with aa
  1. Click on Replace all button.
  1. Now see that the words are replaced as(find and aa, finder,aar,finding,replacing)
  1. Click on Replace button again and fill the Find: field with aa and Replace With: field with replace
  1. Make sure that the Match whole word option is checked.
  1. Click on Replace all button.

Actual Result: Now see that the words are replaced as(find and replace, finder,replacer,finding,replacing)

Expected Result:Now see that the words are replaced as(find and replace, finder,aar,finding,replacing)

#5330 Contextual menu not functionnal in safari, Google Chrome and Firefox 3.6 on Mac Confirmed Review+ Alfonso Martínez de Lizarrondo Bug closed Normal
Description

The contextuel menu dont work on FireFox 3.6 for Mac.

Safari 4 and Google Chrome 5 for Mac work the first time. When I want to right click to an other item it's the browser contextuel menu appear.

Mac OS X 10.5.8

#5343 Active list item ARIA role is wrongly placed IBM Confirmed Review+ Garry Yao Bug closed Normal
Description

Currently the 'aria-activedescendant' which marks the active list item is not applied on the correct element, we should move the attribute up to the element that has the role "listbox".

#5345 delete editor.config.elementsPath_filters on editor.distroy based on r5242 Confirmed Review+ Alfonso Martínez de Lizarrondo Bug closed Normal
Description

On destroy function, set items of editor.config.elementsPath_filters to null, but not reset length=0.

So reopening a editor with CKEDITOR.replace, fire the event of "selectionChange" on elementspath/plugin.js, throw a exception.

Repair this bug only needs a statement on 508 line "_source/core/editor.js" :

items = editor.config.elementsPath_filters; for ( index= 0 ; index < items.length ; index++ ){

items[ index ] = null;

}

items.length=0; add by ominshelley

#5348 [IE] Caret is moving to the next block when image/smiley is inserted at the end of the block Confirmed IE brooks Bug closed Normal
Description

To reproduce

  • Open the demo or a sample in the SVN with an empty editor.
  • In source mode paste the following markup. switch to WYSIWYG mode and place the caret in the marked place (end of the first block):
    <p>
    	P1^</p>
    <p>
    	P2</p>
    
  • Insert a smiley or an image.

The caret is going to the beginning of the second block.

#5350 Problems inserting new lines with IE8 inside pre IE Bug confirmed Normal
Description

Related to #4711 but this is weirder: Using IE8 set this source:

<pre>Hello world!
Bla, bla, bla
</pre>

Go to the end of the first line and press enter several times, this is what it generates:

<pre>
Hello world!

B
l
a
,
 
b
l
a
,
 bla
</pre>

IE6 and IE7 seem to work correctly.

#5352 CKEDITOR.stylesSet.add can't be used inline with _source files Review+ Alfonso Martínez de Lizarrondo Bug closed Normal
Description

Trying to use the CKEDITOR.stylesSet.add in the page to define a stylesSet without using an external file doesn't work while using the _source files.

#5363 Have the "title" atttribute on iframes Confirmed IBM Review+ Garry Yao Bug closed Normal
Description

We should evaluate the impact about having the "title" attribute in all iframe elements we use in our interface. This is a requirement for accessibility standards:

http://www.w3.org/TR/WCAG20-TECHS/H64.html
http://www-03.ibm.com/able/guidelines/web/webframes.html

We can check the impact of it is by using INS+F9 in JAWS. Currently, it should list the editor iframes, which now have a kind of unusable name.

#5364 The a11y help dialog doesn't always get focus Confirmed IBM Review+ Garry Yao Bug closed Normal
Description

Sometime, with a clean cache, the focus is not sent to the accessibility help when opening it with ALT+0. The caret stays in the editor, and it's even possible to type on it.

I was able to reproduce it with Firefox in the nightly build, but not locally. I think it's related to the download delay of the online installation. It may be that the dialog focus procedure is execute before having the dialog ready, so no focus is set at all.

#5365 Undocumented options for the link dialog Discussion Review- Alfonso Martínez de Lizarrondo Task closed Normal
Description

In link\plugin.js there are two options that aren't documented

CKEDITOR.tools.extend( CKEDITOR.config,
{
	linkShowAdvancedTab : true,
	linkShowTargetTab : true
} );

As the new architecture of the dialogs allow to easily customize the tabs of each dialog, I wonder if we should add the documentation for these or just remove them (and the little code in the dialog.js file)

Personally, I vote for removing them. Note also that the image plugin lacks the corresponding options.

#5368 Memory leak in setData function Review+ Alfonso Martínez de Lizarrondo Bug closed Normal
Description

Hi

I think there is a memory leak in the function CKEDITOR.editor.setData().

OS : WIndow 7 Firefox 3.6

I create an editor and a button. When I click the button I put 10 time 1 million 'a' in the editor using the function setData. At the beginning my brower took 69MO , after 10 click on the button it goes 330MO. (I have waiting for the GC to collect).

It is a problem for me because I'm using the ckeditor in an ajax application and so never reloaded the page moreover my customer does big Word paste into the editor.

I join my simple html witch illustate that.

Thanks.

#5372 Create sublist should not clone styles from parent Confirmed Review+ Garry Yao Bug closed Normal
Description
  1. Load the following HTML:
 <ul style="margin-left: 40px;">
	<li>A</li>
	<li>B</li>
	<li>C</li>
 </ul>

  1. Put the caret in the "B" item.
  2. Click the "Increase Indent" button.

Expected Results: the "B" item becomes e sub-list of "A".

Actual Results: the "B" item becomes a sub-list of "A", but it also takes it's margin-left style, which should happen only in a second click.

#5373 pathBlockElements contains a 'de' elements confirmed Review+ brooks Bug closed Normal
Description

http://dev.fckeditor.net/browser/CKEditor/trunk/_source/core/dom/elementpath.js#9

the pathBlockElements contains a 'de' element, while I think it should be a 'dd' element.

#5374 [[IE]] Selecting a linefeed at start of text in CK Editor causes styling issues IBM Review+ Garry Yao Bug closed Normal
Description

'To reproduce the defect'

  1. Input several lines of text into Editor for example like below.

a

b

c


  1. Select characters beginning with a linefeed. In this case, select from the linefeed character just after the character 'a' up to and including the character 'b'.
  1. Add a style to the text e.g. Bold, to change the style of selected characters and the bold styling will be applied.
  1. Select the same style button again (in this case bold) to restore the text to it's original format.

Problem:

The text remains in bold - the styling is not restored.

Expected:

The text should restore to it's original format.This only occurs in IE and only occurs when the linefeed is selected at the start of the highlighted text.

#5376 if we apply heading formatting to a list item in an Ordered/Unordered list we can't come out of the list IBM Confirmed Review+ Garry Yao Bug closed Normal
Description

To reproduce the defect

  1. Open Ajax sample
  1. Click on Numbers icon to start a Numbered list.
  1. Type some text after the first number in the list.
  1. Select the text in list item and apply any heading formatting(Heading 1 to Heading 6)
  1. See that Heading formatting is applied to the list item.
  1. Now press Enter, see that the next number comes up in the Ordered list
  1. Press Enter one more time.

Expected Result:

The cursor should come out of the Ordered list and a new empty Paragraph should open

Actual Result:

No Matter how many times we press the Enter, the list goes on increasing and every time we press enter it is adding a new empty list item in Ordered list.

Same behaviour is also happening in the case of Bullets.

#5381 Cursor in wrong position after pasting content Confirmed Review+ Garry Yao Bug closed Normal
Description

Confirmed in IE8. Looks like a IE issue and it looks like it didn't occur before CKEditor 3.1 and probably it has something to do with pasting mixed <div> and <p> tags.

After pasting certain content, cursor is not positioned at the end of text but somewhere in the middle.

Steps to reproduce

  • Open in IE8 http://ckeditor.com/demo and select all text in the CKEditor and clear the contents.
  • Paste the content from example2.html - the cursor will be positioned at the beginning of the second line

(Old steps to reproduce below, the example above is much simpler)

  • Press "New Page" button and paste the content from example1.html - the cursor will be positioned at the beginning of the last paragraph - before "The content of... "
  • Press "New Page" button and paste the content from ckeditor_ie8_pasting_bug.CLP (use clipbrd.exe / ClipBoardViewer to open the file) - the cursor will be positioned at the end of first paragraph (after Gruss, schöne Test, Email)
#5396 Focus is going out of the Editor when we change the Option in Cell Type list box on Cell Properties dialog IBM Confirmed Review+ Garry Yao Bug closed Normal
Description

To reproduce the defect

  1. Open Ajax sample.
  1. Insert Table with default no of Rows & Columns.
  1. Go in to one of Table cells and Activate Context menu.
  1. Go to Cell Properties sub menu and click on it to open Cell Properties dialog.
  1. In the Cell Properties dialog change the Cell Type to Header from Data in Cell Type list box.
  1. Click OK Button.

Expected Result

Cursor should be back in the Table cell for which we have changed the Cell Properties.

Actual Result

Cursor is going out of the Editor and we have to use Tab and Shift + Tab to get the focus back in to the Editor.

#5401 On IE quirks mode, the context menu break layout with Office2003 and V2 skin. IE Review+ Minh Nguyen Bug closed Normal
Description

Reproducing Procedures

  1. Open the "skins.html" page;
  2. Change to IE quirks mode;
  3. With V2 or Office2003 skin, right click on a link to show context menu;
#5402 if we apply Pre-Formatted formatting to a list item in an Ordered/Unordered list we can't create new list items & also we can't come out of the list IBM Discussion Confirmed Review+ Garry Yao Bug closed Normal
Description

To reproduce the defect

  1. Open Ajax sample
  1. Click on Numbers icon to start a Numbered list.
  1. Type some text after the first number in the list.
  1. Select the text in list item and apply Pre-Formatted formatting.
  1. See that Pre-Formatted formatting is applied to the list item.
  1. Now press Enter

Expected Result

See that next number comes up in the ordered list and when we press the Enter for the second time,the cursor should come out of the Ordered list and a new empty Paragraph should open

Actual Result

The Next Number in the ordered list do not comes up and when we Press Enter any number of times we can't come out of the list.

Same behaviour is also happening in the case of Bullets.

#5411 Anchors can be resized. Confirmed Review+ Garry Yao Bug closed Normal
Description

An anchor can be resized, even though this is just a fake object to represent the anchor.

Steps to reproduce:

  • In default sample; insert anchor.
  • Resize placeholder image using handles.
#5415 Undo not working when we change the Table Properties for the table on a saved page IBM Confirmed Review+ Garry Yao Bug closed Normal
Description

To reproduce the defect

  1. Open Ajax sample.
  1. Insert a Table and enter the text in Table Cells.
  1. Click on Remove Editor button to save the Page.
  1. Click on Create Editor button to open the page again.
  1. Go in to one of Table cells and Open Table Context menu and Click on Table Properties.
  1. In Table Properties dialog change Table Alignment to Center and Click OK.

Expected Result

Table is Aligned to Center and the Undo button should be enabled.

Actual Result

Table is Aligned to the Center but the Undo button is not enabled and it will not enable even if we change any number of Table Properties.It is only enabled when we type some text in the Editor.

#5416 [[IE]] we can't delete the Table on a Saved Page confirm Review+ brooks Bug closed Normal
Description

To reproduce the defect

  1. Open Ajax sample.
  1. Insert a Table and enter the text in Table Cells.
  1. Click on Remove Editor button to save the Page.
  1. Click on Create Editor button to open the page again.
  1. Go in to one of Table cells and delete the text in one of the Table Cell.
  1. Open Table Context menu and Click on Delete Table Option.

Expected Result:

See that the Table is deleted and you are able to save the page.

Actual Result:

Table is deleted but we are getting an Error & i have attached a Screen shot of the Error and when we click on Remove Editor button to save the Page we get the same Error again.

When i click on Remove Editor button for the Second Time it saves the page but i could still see the Table that i have deleted before.

Tested on IE 6&7

#5419 JAWS not reading first option in Special Character list on Special Character dialog IBM Confirmed Review+ Garry Yao Bug closed Normal
Description

To reproduce the defect

  1. with JAWS on Open AJAX Sample and Navigate to Tool bar by Pressing Alt+F10
  1. Navigate to Special Character icon & press space bar to activate Special Character dialog.
  1. When the dialog comes up and when the Focus is on the Special Character Options list box Focus goes to first Special Charcter which is !(Exclamation mark). JAWS not reading the name of the option.It just reads 1 of 221 not Selected

Expected:

JAWS should read the name of the Special Character Option.

JAWS reads the name of the option properly in FF3.5 but not in FF 3.6

This looks similar to the defect http://dev.fckeditor.net/ticket/5366

#5422 [[IE]] we can't enter the text below Page break IBM Confirmed IE Garry Yao Bug closed Normal
Description

To reproduce the defect

  1. Open Ajax sample.
  1. Type some text and Click on Insert Page break for Printing button.
  1. See that Page break is inserted in the Editor.
  1. Try to position the Cursor after the page break using Mouse or Key board.

Expected Result:

We should be able to position the cursor after the page break using mouse or key board and we should be able to type the text after Page break.

Actual Result:

Cursor is still shown above the Page break and we can't position the cursor after page break.So we won't be able to type the text after page break.

#5431 CKEditor 3.1.1 and 3.2 have the exact same timestamp Confirmed Review+ Garry Yao Bug closed Normal
Description

Since the timestamp is actually calculated using the release date, and version 3.1.1 and 3.2 have been released on the exact same date, the timestamp for both is the same.

This however defeats the whole purpose of this timestamp: to prevent caching.

Since this cannot be changed now, but might possibly happen again in the future, I would suggest to not only use the release date to calculate a unique timestamp, but also the CKEditor version.

#5433 Wrong orientation of Protocol list in Insert Link dialog in Hebrew IBM Confirmed Review+ Garry Yao Bug closed Normal
Description

To reproduce the defect

  1. Open CK Editor Sample with Hebrew Language
  1. Click on Link Icon.

See that the Protocol drop down list box has right to left orientation. However this causes corruption in the order of characters as this should be in Left To Right orientation (because the protocols are in English). Please see attached screen shot

#5434 Access Denied error on IE7 and IPv6 IE7 IBM Review+ Frederico Caldeira Knabben Bug closed Normal
Description

We are testing the editor in an IPv6 environment on IE7.

Script debugger reports the error at:

return i&&new g(i.contentWindow.document);

in ckditor.js. This looks to be in issue in element.js.

I suspect it is the call to contentWindow.document that is causing the "Access Denied" error.

The editor loads, but is not usable.

#5435 [[IE]] we can't start Numbered/Bulleted list in Tables by Clicking on Insert/Remove Numbers/Bullets Icon IBM Confirmed Review+ Garry Yao Bug closed Normal
Description

To reproduce the defect

  1. Open Ajax sample.
  1. Insert a Table with some no of rows and Columns
  1. Go in to one of Table Cell and Click on Insert/Remove Numbers or Bullets Icon

Actual Result:

Nothing happens,even when we type the text in the Table Cell it just shows as a Normal Text but not as Numbered/Bulleted list item

Expected Result:

A new Numbered/Bulleted list should start depending up on the Insert/Remove Numbers/Bullets Icon that you click on.

I have tested against IE 6,7 & 8

This is a regression issue.

#5438 Correct editor destruction in SCAYT Review+ Alfonso Martínez de Lizarrondo Bug closed Normal
Description

When an editor is destroyed the SCAYT fails. The patch fixes that issues as well as several coding style adjustments.

#5440 Mark mobile browsers as incompatible Review+ Alfonso Martínez de Lizarrondo Task closed Normal
Description

Currently the browser and version detection allows to use CKEditor with mobile browsers, but the fact is that they don't support editing the contents, so they can't edit anything at all if the source button has been removed.

I've tried to test for feature detection (as they might add it someday) but it reported the same results than a supporting browser for contentEditable and designMode.

#5441 Fix for #3812 breaks CKEditor in IE when editor instance is no longer in DOM Confirmed Review+ Alfonso Martínez de Lizarrondo Bug closed Normal
Description

The IE-specific fix for #3812 causes another bug if the CKEditor container isn't a descendant of document.body. This bug only occurs in IE (because we use the moveToElementText function).

Attached is a test HTML file as well as a potential patch. The main shortcoming of the patch is that it does scroll to the top of the page. If someone has a better fix that would be great!

#5442 Server side API for classic Asp Review+ Alfonso Martínez de Lizarrondo New Feature closed Normal
Description

The patch is a port of the ckeditor.php4 to asp.

I haven't found a way to do the automatic detection of the location of the current script, so that part is hardcoded to /ckeditor/ the rest of the behavior should match and the samples pages seem to work ;-)

#5450 Press enter on 'replace' button result wrong Review+ brooks Bug closed Normal
Description

Reproducing Procedures

  1. Load the any of the sample page;
  2. Open 'Replace' dialog and fill in 'are';
  3. Tab to focus the 'Replace All' button and press 'Enter';
  • Expected Result: You get only the success message.
  • Actual Result: You get both message: 'Specified text not found' and '1 occurance replaced'.
#5452 [IE+Quirks] Unscrollable combo dropdown list Confirmed IE Review- Garry Yao Bug closed Normal
Description

In Quirks mode, the dropdown list of all combos don't have vertical scrollbar.

#5454 After replaced success, the popup window couldn't been closed and a js error occured confirmed Review+ brooks Bug closed Normal
Description

Load the replace by class sample page; 1.Open 'Replace' dialog and fill in 'are'; 2.click the 'Replace' buttton 2 times; 3.click the 'Cancel' bbutton or the 'x' button to close the popup window

Expected Result: the popup window is closed. Actual Result: a js error throws and you couldn't close the popup window any more

#5456 Link Dialog in api_dialog sample doesn't have initial focus Confirmed Review+ Garry Yao Bug closed Normal
Description

The initial focus of the customized Link dialog when open in api_dialog sample is neither inside the URL text filed or any other field.

#5460 Empty <ul></ul> remains on source Confirmed Review+ Garry Yao Bug closed Normal
Description
  1. Load the following HTML:
<ul>
	<li>
		Item 1
		<ul>
			<li>
				Item 1.1</li>
		</ul>
	</li>
</ul>
  1. At the end of "Item 1.1", hit ENTER three times. A new paragraph is started after the list.
  1. Switch to source.

Note that an empty <ul></ul> is created in the first list item:

<ul>
	<li>
		Item 1
		<ul>
		</ul>
		<ul>
			<li>
				Item 1.1</li>
		</ul>
	</li>
</ul>

Confirmed with FF 3.6 at least. Works well with CKEditor 3.2.

#5461 IE: Paste from Word dialog doesn't accept imput confirmed Review+ Garry Yao Bug closed Normal
Description

Confirmed with IE8 and CKEditor 3.2. Works well with the 3.1.1.

  1. Open the Paste from Word dialog.
  1. Click on the bottom part of the pasting area. The caret will disappear.
  1. Try putting the caret back to the pasting area by mouse click. It's impossible.
#5462 Color is removed improperly from partial selections Confirmed Review+ Frederico Caldeira Knabben Bug closed Normal
Description
  1. Open the replacebyclass sample.
  1. Hit CTRL+A to select all text.
  1. Apply a background color (e.g. yellow).
  1. Select "some sample".
  1. Apply a different background color (e.g. green).

The yellow background from the " text" bold text will be removed, remaining transparent.

Confirmed with FF 3.6 at least. Works well with the 3.2.

#5477 [IE] Tab key incorrect result when document contains control type element IE Confirmed brooks Bug review_failed Normal
Description

Environment

All IE versions

Reproducing Procedures

  1. Load any of the sample page and fill the editor with the following contents:
    test tab order
    <hr />
    
  2. Place the cursor at the beginning of first line and press 'Tab' key.
  • Expected Result: The editor blurs and focus into the element in next tabIndex.
  • Actual Result: The focus goes into the <hr> element.
#5478 [IE] Impossible to place the caret after images at the end of the contents IE Bug closed Normal
Description

Environment

All IE versions

Reproducing Procedures

  1. Load any of the sample page and fill the editor with the following contents:
    <table>
    	<tbody>
    		<tr>
    			<td>
    				text <img src="http://dev.fckeditor.net/chrome/site/logos.gif" /></td>
    		</tr>
    	</tbody>
    </table>
    
  • Expected Result: It should be able to place the cursor after the image.
  • Actual Result: It's not possible to place cursor after the image with either mouse or keyboard.
#5479 [IE] Cursor after table at the end of document in enterMode=BR IE Garry Yao Bug review Normal
Description

Environment

IE8 standards, with enterMode = BR.

Reproducing Procedures

  1. Load any of the sample page and fill the editor with the following contents:
    <table>
    	<tbody>
    		<tr>
    			<td>
    				text</td>
    		</tr>
    	</tbody>
    </table>
    
  2. Click into the spaces after the table at the end of document.
  • Expected Result: It's possible to have the cursor blinking there and start typing.
  • Actual Result: Cursor stays as it is.
#5482 Smiley icons preload IE Bug confirmed Normal
Description

This screencast in IE demonstrates that Smiley icons are displaying in a fly-in way on slow connection thus break the layout of dialog.

#5483 Fullpage problem when missing title Confirmed Review+ Garry Yao Bug closed Normal
Description

Environment

Firefox and Safari

Reproducing Procedures

  1. Load the 'Full Page Support' sample page and fill the editor with the following contents in source mode:
    <html>
    <head></head>
    </html>
    
  • Actual Result: Wysiwyg mode is broken and 'Source' command is disabled.
#5485 Missing accessibility attributes in the editing area DOM Oracle Confirmed Review+ Garry Yao Bug closed Normal
Description

Once the editor is displayed, editor area's iframe is not having the Title attribute and inside the iframe, <html> element doesn't have the lang attribute.

#5488 Normal Paste affected by paste from word Confirmed Review+ Garry Yao Bug closed Normal
Description

Reproducing Procedures

  1. Open http://ckeditor.com/files/test.html
  2. Select all page content with Ctrl + A;
  3. Open any of the sample page;
  4. Click on "Paste from Word" button once, in the popup dialog, allow the clipboard access option;
  5. Press "New Page" to clear all contents;
  6. Click this time on "Paste" button, in the popup dialog, allow the clipboard access option;
  • Actual Result: The "class" attribute is missing.
     <p>
    	styled text</p>
    
  • Expected Result:
    <p class="someclass">
    	styled text</p>
    
#5490 [IE] Can't move the cursor after an anchor IE8 Bug closed Normal
Description

There are two different cases affected by this bug:

Steps to reproduce (1)

  • Open the editor and clear all content.
  • Add an anchor.

Notice that the cursor is to the left of the anchor and can not be moved to the right.

Steps to reproduce (2)

  • Open the editor and type some content
  • Add an anchor after the content.

Notice that the cursor is to the right of the anchor.

  • Move the cursor to the left of the anchor.

Notice that the cursor can not be moved to the right.

#5498 [IE] Inline quotation problem IE8 Bug confirmed Normal
Description

Environment

All IE versions.

Reproducing Procedures

  1. Open any of the sample page;
  2. Open 'Styles' combo and click on 'Inline Quatation" and start typing a few characters;
  3. Select 'Inline Quatation" again to close the style, then continue typing;
  • Actual Result: The closed half of quatation is not displayed.
#5500 Missing attributes of Text Field IE Garry Yao Bug closed Normal
Description

Environment

All IE versions

Reproducing Procedures

  1. Open any of the sample page;
  2. Insert a text field with all fields filled;
  3. Switch to 'Source' mode and switch back;
  4. Open 'Text Field' dialog through context menu;
  • Actual Result: 'Value' field value is missing.
#5501 Missing attributes of Text Area IE Bug confirmed Normal
Description

Environment

IE6/7

Reproducing Procedures

  1. Open any of the sample page;
  2. Insert a textarea with all fields filled;
  3. Switch to 'Source' mode and switch back;
  4. Open 'Text Field' dialog through context menu;
  • Actual Result: 'Columns' field value is missing.
#5504 [IE] Paste button problem Confirmed Review+ Garry Yao Bug closed Normal
Description

Environment

IE6/7

Reproducing Procedures

  1. Open any of the sample page, copy all the content with 'Ctrl-C';
  2. Click on the 'Paste' button, select 'Allowed' in the up-comming confirmation dialog.
    • Expected Result: Contents are pasted into document.
    • Actual Result: Paste dialog opens up;
#5505 IE: Insert image throws error Confirmed Review+ Garry Yao Bug closed Normal
Description

first make sure you are in https environment, and then choose replace by class sample.

reproduce:

  1. click insert image button
  2. in the dialog first tab, enter a image URI in URL
  3. click ok button

confirmed in Firefox3.5 and IE8,win7

#5512 [IE] Can not navigate to the Cell sub menu in the context menu with the keyboard Review+ Garry Yao Bug closed Normal
Description

I was able to reproduce this bug on IE8. I couldn't reproduce it on FF 3.6.5. didn't check other browsers. Tested with the demo and the trunk.

Steps to reproduce

  • Open the demo and put the caret inside a cell of the table.
  • Press SHIFT + F10 to activate the context menu.
  • Go down with the arrow to the Cell option.
  • Open the sub menu using the arrow/tab/space.

a JS error is thrown.

#5513 Tab navigation in dialogs incompatible with RTL Review+ Bug closed Normal
Description

The arrows in RTL should be the opposite of LTR. Attaching a patch.

#5514 Elements path navigation incompatible with RTL Review+ Bug closed Normal
Description

The arrows in RTL should be the opposite of LTR. Attaching a patch.

#5516 IE8: Toolbar buttons have higher bottom padding IE8 Confirmed Review+ Garry Yao Bug closed Normal
Description

This cannot be reproduced with the sample files, but in the online demo of CKEditor, the buttons have an extra padding in the bottom with IE8 in IE8 mode. This is easy to notice in the last row, when compared with the combos.

#5530 page break for printing can not be removed using Undo IBM Confirmed Review+ Garry Yao Bug closed Normal
Description

To reproduce the defect:

  1. Open Ajax sample.
  1. Type some text and Click Insert Page break for Printing Icon.
  1. See that the page break for printing is inserted in the editor.
  1. Press Undo

Expected Result:

See that the Page break for Printing that we have inserted in Step 2 is removed

Actual Result:

Page break for printing is not removed no matter how many number of times we press Undo.

Tested against IE 6&7, FF3.6

#5535 Stack overlow in IE6 when pasting strange HTML IE HasPatch Bug confirmed Normal
Description

When pasting HTML that contains lots of nested tags, IE6 throws an error: "stack overflow at line: 27".

Steps to reproduce

  • Open _samples/api.html
  • Copy content from attached file
  • Paste it into the textarea
  • Press the "Insert HTML" button
#5538 IE 8/9 erratic context menu behavior IE Bug closed Normal
Description

In the latest nightly build:

using IE 8 - if I first copy something, then go to:

http://nightly.ckeditor.com/5378/_samples/replacebyclass.html

then right-click, the context menu appears, but "Paste" is greyed out.

if I right-click again, the context menu appears, and "Paste" is now an active option

If I delete the text that's currently in CKEditor (Ctrl-A to select all, then delete) and then right-click, the menu appears (all greyed out, then immediately disappears)

#5553 Cursor location in Paste from Word and Paste dialogs is incorrect for BIDI languages IBM Confirmed Review+ Garry Yao Bug closed Normal
Description

To reproduce the defect:

  1. Open http://nightly.ckeditor.com/5388/_samples/ui_languages.html
  1. Select Arabic or Hebrew in the languages drop don list
  1. Click on Paste from Word or Paste Icons in the Toolbar

Expected Result: Paste from Word or Paste dialog is opened and the Cursor is on the right-side of the text area

Actual Result: Paste from Word or Paste dialog is opened and the Cursor is on the left-side of the text area.

The Cursor Position is shown properly in Paste as Plain Text dialog.

#5555 [IE] Can not focus the 'Pasting Area' after it loses focus IE Bug closed Normal
Description

Steps to reproduce

  • Click on the 'Paste from word' icon and open the pating area.
  • Click somewhere outside the pasting area.
  • Click inside the pasting area.

The pasting area does not gain focus, the caret is not shown and we can not paste inside it.
Tested on IE8 & FF3.6.3 with the nightly build ([5388]).

#5559 setData affected by iframe loading Confirmed IE Review+ Garry Yao Bug closed Normal
Description

Environment

IE with browser cache enabled.

Reproducing Procedures

  1. Open the 'api' sample page;
  2. Click on "Set Editor Contents" to send editor the default content provided;
  3. Refresh the page;
  4. Modify the default content by adding 'Another' before word 'Test';
  5. Click on "Set Editor Contents" again to send the modified content;
    • Actual Result: The document content is the same with the first time's result.
#5562 [IE] Unable to have 'contentEditable=false" in effect Confirmed IE Review+ Garry Yao Bug closed Normal
Description

Environment

IE8

Reproducing Procedures

  1. Open any of the sample page;
  2. Load the following content in editor;
    <p>
    	This is some <strong contentEditable="false">sample text</strong>.</p>
    
  3. Click inside 'sample text';
    • Actual Result: It's still able to have cursor blinking inside the words and start typing.
    • Expected Result: The strong element should be displayed as control type and should be unable to edit it.
#5565 Erratic scrollbar behavior when opening a rich combo with RTL Confirmed Review+ Oracle Sa'ar Zac Elias Bug closed Normal
Description

Open a rich combo in an RTL page. Notice that an horizontal scrollbar appears for a short time.
Tested on IE8 and FF3.6.6 with the current trunk. Looks like a regression.

#5567 Remove inline style not joining siblings Confirmed IE Review+ Garry Yao Bug closed Normal
Description

Environment

IE8

Reproducing Procedures

  1. Open any of the sample page;
  2. Load the following content in editor;
    <p>
    	Some sample text</p>
    
  3. Select 'Some sample' and apply the 'Bold' style;
  4. Select 'sample text' and apply the 'Italic' style;
  5. Select 'sample' and remove the 'Bold' style;
  6. Swtich to Source mode and check the output.
    • Actual Result:
      <p><strong>Some </strong><em>sample</em><em> text</em></p>
      
    • Expected Result:
      <p><strong>Some </strong><em>sample text</em></p>
      
#5568 [[IE]] First Char in the selected line in a Table is removed from selection after we applied and removed the Formatting IBM IE Confirmed Review+ Garry Yao Bug closed Normal
Description

To reproduce the defect:

  1. Open Ajax Sample.
  1. Insert a Table and enter text in the Table cells.
  1. Select a line(eg: Frederico Knabben) in one of the Table Cells
  1. Click on Bold icon once and see that Bold Formatting is applied to the line.
  1. Click on Bold Icon once again to undo Bold Formatting.

Expected Result: Bold Formatting applied to the line is removed and whole line of text remains selected.

Actual Result: Bold Formatting applied to the line is removed but the First Character(k) in the line is omitted from the selection.

Same behaviour happens with Italic,Underline,Strike Through,Subscript and Superscript formatting options.

Tested against IE 6& 7

#5570 [IE] SCAYT load blind cursor in document Confirmed IE Review+ Bug closed Normal
Description

Environment

All IE versions.

Reproducing Procedures

  1. Open the 'replacebyclass' sample page;
  2. Enable SCAYT, before SCAYT get really enabled, put cursor into the document;
  3. Do nothing until SCAYT button has shown toggled on.
    • Actual Result: Cursor is not blinking inside the document anymore.
#5571 SCAYT throws error Review+ Bug closed Normal
Description

Environment

IE and FF

Reproducing Procedures

  1. Open the attached sample page;
  2. Enable SCAYT;
    • Actual Result: JavaScript error thrown.
#5572 [IE] SCAYT move cursor on misspelled word Confirmed IE Bug closed Normal
Description

Environment

IE

Reproducing Procedures

  1. Open any of the sample page and load the editor with the following content and selection;
    mis^spelled word
    
  2. Enable SCAYT and waiting for SCAYT to be activated.
  3. Press 'Backspace' to delete the previous character and wait for SCAYT to refresh.
    • Actual Result: When the word is marked, the cursor is been moved to the end of the word.
#5573 SCAYT breaks cursor position after insert image Confirmed Review- Bug closed Normal
Description

Reproducing Procedures

  1. Open any of the sample page and load the editor with the following content and selection;
    mis^spelled word
    
  2. Enable SCAYT and waiting for SCAYT to be activated.
  3. Insert a Smiley into the cursor position and wait for SCAYT to refresh.
    • Actual Result: Cursor is now blinking at the beginning of the splitted word.
    • Expected Result: Cursor blinks after the inserted image.
#5575 CKEDITOR.replaceAll should consider all white spaces in classes Review+ Bug closed Normal
Description

Currently, the Regex in the CKEDITOR.replaceAll functions considers only spaces in the class attribute. It should consider all white spaces.

#5577 delete table column throws error Confirmed Review+ brooks Bug closed Normal
Description

reproduce steps:

  1. use table plugin to insert a default table

2. selected multiple cell in the same column

  1. right click to open context menu -> column-> delete columns
#5578 Flash with Alignment is not shown properly in Editor body IBM Confirmed Review+ brooks Bug closed Normal
Description

To reproduce the defect:

  1. Open Ajax sample.
  1. Type some text and insert flash with right alignment.
  1. See that flash is inserted in the body of the editor and is shown as aligned to right.
  1. Type some more text and Click on Remove Editor button to save the page.
  1. See that Flash is shown with proper Alignment on Page View.
  1. Click on Create Editor button to open the page and see the Alignment of Flash in the boy of the Editor.

Expected Result:

Flash will be shown on the right hand side of Editor since it's Alignment was set to Right

Actual Result:

Flash is shown with out any Alignment and it is shown in the middle of the text when i check the Flash Alignment in Flash Properties it is showing Alignment correctly as Right

#5580 Maximize does not work properly in the Office 2003 and V2 skins Confirmed HasPatch Review+ Tobiasz Cudnik Bug closed Normal
Description

Steps to reproduce

  • Go to the skins demo or the skins sample page.
  • Click on the Maximize button on the editors with the Office 2003 and V2 skins.

Notice that there is a space at the bottom and you can see other editor's toolbar buttons.
Tested with IE 8 and FF 3.6.3.

#5582 Closing dialog boxes causes warning in IE confirm Review+ brooks Bug closed Normal
Description

When clicking the top right close link (the red "X") in any dialog box (insert image, spell-checker, etc), Internet Explorer interprets the action as navigating to another page due to the presence of the href attribute in the link element. This does not happen if the user closes the popup using the bottom right "Cancel" button.

Because we monitor changes made to the content, warning the user about the potential loss of data should the user choose to navigate away from the current page, this warning is triggered when the user closes a dialog box using the top right close link.

A fairly easy fix for this problem is to add an onclick="return false;" to the link element.

#5583 Problem with CKReleaser source version Confirmed Review+ Garry Yao Bug closed Normal
Description

Environment

Windows

Reproducing Procedures

  1. Place the attached bat file under 'test' folder of CKReleaser root along with copying ckreleaser.release file from CKEditor.
  2. Replace %ckeditor% with the path of a CKEditor local copy.
  3. Run the script in command line.
    • Actual Result:
      js: uncaught JavaScript runtime exception: ReferenceError "CKPACKAGER" is not defined.
      
#5584 forceEnterMode affects Indendation and Outdentation IBM Confirmed Review+ Garry Yao Bug closed Normal
Description

When using config.forceEnterMode=true it affects how Indendation and Outdentation is applied.

T reproduce the defect:

  1. Open Ajax sample
  1. Click the Increase Indent link and see that the cursor will move to the right the appropriate amount.
  1. Type some text and Press the Enter key to begin a new line

Expected Result:

Cursor should begin at the current indent level as set by the Indent Paragraph control

Actual Result: The cursor position of the new line begins at the left edge of the edit area. The same behavior is exhibited by the Outdent link.

#5586 Multiple editor instances ruins full-screen mode Confirmed Firefox Review+ Garry Yao Bug closed Normal
Description

By running two or more instances of the editor on the same page, swithing to full-screen mode in any of the instances, except the first instance, will ruin the full-screen mode (see attached screenshot). The bug can easily be reproduced by adding another instance in the "replacebyclass.html" example, focusing the editor field of that instance and hitting its full-screen button.

#5591 [Firefox] StylesCombo problem block-level element selection Confirmed Review+ Garry Yao Bug closed Normal
Description

Environment

Firefox

Reproducing Procedures

  1. Open any of the sample page and load the editor with the following content and selection;
    <ol>
        <li>^item1<br /></li>
    </ol>
    
  2. Click the 'li' item on elementsPath bar to select the list item.
  3. Click to open 'Styles Combo'.
    • Actual Result 1: All style options is available on panel list;
    • Actual Result 2: Float panel will not close when putting cursor back into editor document.
#5593 hit enter key in a cell throws a error Confirmed Review+ brooks Bug closed Normal
Description

steps to reproduce:

  1. insert a defaut table
  2. put the cursor in one cell and then hit enter key

confirmed in firefox3.5,chrome in win7

#5596 Vietnamese language update Review+ Minh Nguyen Bug closed Normal
Description

Correct grammar and translater missing words.

#5615 IE6 IE7: CKEditor scrolls up when clicked outside editor and config.docType is set IE6 IE7 Bug closed Normal
Description

CKeditor 3.2 : setting any value in config.docType makes vertical scrollbar flicker and you can't see the cursor.

  • change the config.docType setting with the same CKeditor default value.

config.docType = '<!DOCTYPE HTML PUBLIC "-W3CDTD HTML 4.0 TransitionalEN">';

  • Add more than 20 lines so that there is a vertical scrollbar on the right side of the textarea.
  • Select the last line of text in the textarea and try to apply a font size, style, format or font name
  • You will see that the cursor moves (flickers) and you can't see the last line
  • Now, remove the configuration line config.docType in the first step and every works fine.
#5617 Filter does not allow two 'text' filters Confirmed Review+ Garry Yao Bug closed Normal
Description

By adding another 'text' type filter to htmldataprocessor breaks the editor output, e.g.

htmlFilter.addRules(
	{
		text : function( text )
		{
			return text;
		}
	});
#5618 Dialog error when remove editor instance Confirmed Review+ Garry Yao Bug closed Normal
Description

The following regression is seen after [5412]:

Reproducing Procedures

  1. Load the 'Ajax' sample page and click 'Create Editor' button;
  2. Open any of the the dialog;
  3. Execute the following lines of JavaScript in global scope:
    removeEditor();
    
  4. Click once again 'Create Editor' and open the same dialog;
    • Actual Result: Dialog opened with no viewport cover.
#5622 [FF] Cursor not blinking on editor::focus Confirmed Safari Firefox Opera Review+ Garry Yao Bug closed Normal
Description

On 3.3.x branch, when using Tab key to focus the editor, notice that the cursor is not blinking.

#5623 Apply two styles problematic Confirmed Firefox Review+ Garry Yao Bug closed Normal
Description

Environment

Firefox

Reproducing Procedures

  1. Open the 'replacebyclass' sample page and make the following selection:
    <p>
    	[This is ]some...
    
  2. Apply 'Bold' style on the selected content;
  3. Make the new selection as following and apply 'Italic' Style:
    <p>
    	<strong>This [is ]</strong> some...
    
    • Actual Result: The italic style has expanded onto the previous word.
    • Expected Result: Only the selected content receive the new style.
#5627 textarea/textfield contents are editable IE Bug closed Normal
Description

On 3.3.x branch the following bug is noticed.

Environment

Firefox, IE

Reproducing Procedures

  1. Open any of the sample page and make the following selection:
    <textarea name="editable" id="" cols="30" rows="10">^some text</textarea>
    
    • Actual Result: The textarea become editable in effects.
  2. Press 'Enter' key inside the editable textarea;
    • Actual Result: New paragraph is created before the textarea;
  3. Put the cursor among the text and press 'Enter' key again;
    • Actual Result: In IE, the textarea is splitted into two.
#5628 Incorrect <pre> merging Confirmed Review+ Garry Yao Bug closed Normal
Description

Reproducing Procedures

  1. Open any of the sample page and make the following selection:
    <pre>
    preformatted</pre>
    <ol>
    <li>
    	^preformatted as list item</li>
    </ol>
    
  2. Open 'Format' combo and apply 'Preformatted' block style.
    • Actual Result: The pre block before the list get merged into the one inside list item.
#5629 delete table column should consider about the nested table case Review+ brooks Bug closed Normal
Description

where,this is a update for 5577 5577,Garry said:
'As a side note for 5418 this change, in the future please use instead the following way to iterating over table cells and rows, as table.getElementsByTagName('tr') would returns nested table rows also. http://msdn.microsoft.com/en-us/library/ms537443(VS.85).aspx'[[BR]]

#5632 SCAYT decoration Confirmed Review+ Bug closed Normal
Description

patch resolves problem with SCAYT decoration found during review of #5466 (SCAYT markup is overriden by color markup)

This patch should be manually merged with #5572_2, but may be applied standalone.

#5634 In IE 8 Compatibility Mode need to click twice to edit Confirmed IE Frederico Caldeira Knabben Bug closed Normal
Description

IE 8 Compatibility Mode (and possibly IE 7) have to click twice inside the editor to be able to edit. On first click the blinking cursor appears, but contents are not editable. Have to click the second time.

How to replicate:

Open http://nightly.ckeditor.com/5430/_samples/replacebyclass.html in IE8 and enable Compatibility View. Click once inside the editor and try editing.

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