Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (101 - 200 of 2646)

1 2 3 4 5 6 7 8 9 10 11 12
Ticket Summary Keywords Owner Type Status Priority
#3235 V3 : ToolbarSet feature Confirmed Review+ Artur Formella New Feature closed Must have (possibly next milestone)
Description

Currently, CKEditor offers a way to provide the toolbar definition by setting it directly to the "toolbar" setting.

While that is useful, it would be still nice to have more than one toolbar definitions in the configuration file, making it possible switching them with a simple setting, just like V2.

The idea would be introducing the "toolbarSets" object setting, which accepts several definitions, and then make the "toolbar" setting smart. If it receives a string, its the toolbarSet name, otherwise it's a toolbar definition.

#3238 Dialogs open out of the window Confirmed Oracle Review+ Frederico Caldeira Knabben Bug closed Must have (possibly next milestone)
Description

Many times, but now always, dialogs open outside the viewport, over the top of it. I has been easily reproducible with the Link dialog.

#3256 Justify across table cells incorrect Confirmed Review+ Garry Yao Bug closed Must have (possibly next milestone)
Description

Reproducing Procedures

  1. Open the replace by class example page;
  2. Make the following content with the selection by click and drag over table cells;
    <table border="1" cellpadding="1" cellspacing="1" style="width: 200px;">
    	<tbody>
    		<tr>
    			^<td>
    				text</td>
    			<td>
    				text</td>^
    		</tr>
    	</tbody>
    </table>
    
  3. Click on 'Justify Right' to apply alignment.
    • Actual Result: Javascript Error occurred.
    • Expected Result:
      <table>
      	<tbody>
      		<tr>
      			<td style="text-align: right;">
      				text</td>
      		</tr>
      		<tr>
      			<td style="text-align: right;">
      				text</td>
      		</tr>
      	</tbody>
      </table>
      
#3266 Minimize the usage of the _cke_expando attribute Confirmed Review+ Frederico Caldeira Knabben Bug closed Must have (possibly next milestone)
Description

Our DOM API currently forces the creation or the _cke_expando property for every DOM object created.

In IE, this property becomes an attribute into the DOM. So, this situation is causing a huge performance impact in the code.

#3276 IE : Error when opening the link dialog Confirmed IE Review+ Frederico Caldeira Knabben Bug closed Must have (possibly next milestone)
Description

In IE, a js error is being thrown when opening the Link dialog.

#3299 range::checkStartOfBlock|checkEndOfBlock are broken Confirmed Review+ Frederico Caldeira Knabben Bug closed Must have (possibly next milestone)
Description

checkStartOfBlock is broken, returning "true" for the following case:

<p>Test^</p>

checkEndOfBlock is the opposite. It's broken, returning "true" for the following case:

<p>^Test</p>
#3300 Styles are not being applied correctly Confirmed Review+ Frederico Caldeira Knabben Bug closed Must have (possibly next milestone)
Description
  1. Load a sample.
  2. Select "some sample".
  3. Apply the "Strike Through" style.

Result: only "some " get styled.

#3303 Remove list command is broken again Review+ Frederico Caldeira Knabben Bug closed Must have (possibly next milestone)
Description

To reproduce:

  1. Open replacebyclass.html in any supported browser.
  2. Put caret on the first paragraph.
  3. Press Create/Remove Numbered List button - a list is created as expected.
  4. Press Create/Remove Numbered List button again - a JavaScript error appears.

The error seems to have to do with recent changes to DOM node custom data logic.

#3305 IE - Combo features do not work in latest nightly build IBM Confirmed Review+ Frederico Caldeira Knabben Bug closed Must have (possibly next milestone)
Description

The latest Ajax sample in the nightly build (3350) causes errors when creating an instance of the editor.

Once the editor has been created it is not possible to apply any of the styles from any of the combo features.

When an attempt is made to apply a style by selecting some text and using one of the combo features, another error occurs.

This is issue is specific to IE6 & IE7

#3309 Styles are remove when caret placed in element boundaries IBM Confirmed Review+ Garry Yao Bug closed Must have (possibly next milestone)
Description
  1. Having the following selection:
Some <strong>sample^</strong> text.
OR
Some <strong>^sample</strong> text.
  1. Press CTRL+B.

The entire work gets un-bolded, instead of simply disabling it (moving the selection to outside the touching boundary).

This issue is more often faced when typing, using CTRL+B to type a word, and then CTRL+B again to continue writing.

#3320 Floating panels don't use the baseFloatZIndex setting Confirmed IBM Review+ Frederico Caldeira Knabben Bug closed Must have (possibly next milestone)
Description

If the editor is placed inside a floating element with z-index, all floating panels (combos, context menu and color buttons) will stop working. Actually, they will be loaded "behind" the floating element (and the editor).

#3352 Enhance domIterator plugin Confirmed Review+ Garry Yao Bug closed Must have (possibly next milestone)
Description

Certain utility methods( L15-L60 ) of the plugin are not updated with the current trunk codes, which should be refacted.

#3359 Editing area is not visible in IE quirks mode Oracle Review+ Martin Kou Bug closed Must have (possibly next milestone)
Description

To reproduce:

  1. Remove the <!DOCTYPE> line from sample.html.
  2. Open replacebyclass.html in IE6.
  3. The editing area is not visible.
#3387 Layout consistence and stability Confirmed Review+ Frederico Caldeira Knabben Bug closed Must have (possibly next milestone)
Description

The current editor layout is still unstable. The elements path resizes when switching to source view, or en using the editor in IE. Also, the editor height changes when switching to source. We must achieve a consistent and stable layout.

#3451 [IE] Find result highlighting problem IE Bug closed Must have (possibly next milestone)
Description

Previous highlight marking style is not removed when search more than twice.

Reproducing Procedures

  1. Open the replace by class example page;
  2. Open 'Find' dialog, search for 'some';
  3. Keep the dialog open, another search for 'are'
  • Actual Result: Search results from both matching are marked.
#3465 Dialog tabs are causing Firefox throbber to spin indefinitely. Oracle Review+ Martin Kou Bug closed Must have (possibly next milestone)
Description

To reproduce:

  1. Open replacebyclass.html in Firefox 3.
  2. Open the link dialog.
  3. Click on any tab in the link dialog.
  4. Close it.
  5. Open the link dialog again.
  6. Click on any tab in the link dialog.
  7. Firefox's throbber icon spins and will not stop, indicating it's loading something.
#3468 Syntax errors in trunk code is causing editor to crash in IE6, 7 Review+ Martin Kou Bug closed Must have (possibly next milestone)
Description

To reproduce:

  1. Open replacebyclass.html today's trunk code in IE6 or 7.
  2. JavaScript error.
#3505 Enter key on empty document is broken Confirmed Review? Garry Yao Bug closed Must have (possibly next milestone)
Description
  1. Load any sample.
  2. Select all text (CTRL+A).
  3. Delete the selected text with BACKSPACE.
  4. Hit ENTER.

A JavaScript error is thrown and the caret doesn't move. Going to Source after it we have:

<p>
	<br />
</p>
<p>
	<span _fck_bookmark="1" style="display: none;"><span>&nbsp;</span>&nbsp;</span><br />
</p>
<p>
	<span _fck_bookmark="1" style="display: none;">&nbsp;</span><br />
	<br />
</p>
#3522 onbeforeunload is fired whenever dialog tabs are being switched Oracle Review+ Martin Kou Bug closed Must have (possibly next milestone)
Description

To reproduce:

  1. Open replacebyclass.html in IE.
  2. Execute
    javascript: void(window.onbeforeunload=function(){alert('a');});
    
    in the URL bar.
  3. Open any dialog with tabs (e.g. Find/Replace dialog).
  4. Change to another tab in the dialog.
  5. The onbeforeunload event is fired, incorrectly.

This bug is related to #3114 and is a known browser bug: http://msdn.microsoft.com/en-us/library/ms536907%28VS.85%29.aspx

#3545 Context menus have wrong layout in IE quirks mode. Confirmed IE Review+ 3.0RC Tobiasz Cudnik Bug closed Must have (possibly next milestone)
Description

To reproduce:

  1. Remove the <!doctype> line from sample.html.
  2. Open replacebyclass.html in IE6, 7 or 8.
  3. All IE versions -> The position of the context menu is wrong.
  4. IE6 and 7 -> The internal layout of the context menu is also wrong.
#3546 CKReleaser is broken under Windows Oracle Confirmed Review+ Wiktor Walc Bug closed Must have (possibly next milestone)
Description

When release.bat is run under Windows, the following error message is seen:


Copying files...


Copying files to special destination...


Renaming files...


Processing directives in files used by CKPackager...

......
JavaException: java.io.IOException: Cannot run program "svn": CreateProcess erro
r=2, The system cannot find the file specified
#3559 CKReleaser is breaking the ui_languages sample Confirmed 3.0RC Review+ Wiktor Walc Bug closed Must have (possibly next milestone)
Description

The UI Languages sample in the nightly build is broken because CKReleaser is somehow removing backslash chars from the code when outputting the final sample page.

In the above page, look at line 16. You will find a string containing </script>, which breaks the page. In the original trunk code we have <\/script>, which is ok.

#3561 Editor is broken with any language other than "en" Confirmed 3.0RC Review+ Artur Formella Bug closed Must have (possibly next milestone)
Description
  1. In config.js, uncomment the line with config.language = 'fr';
  1. Load the replacebyclass sample.

An error is thrown, related to the scayt plugin.

#3574 Indent whole paragraph incorrect Confirmed Review+ Garry Yao Bug closed Must have (possibly next milestone)
Description

Reproducing Procedures

  1. Open the replace by class example page in FF;
  2. Press 'Select All' button;
  3. Click on 'Increase Indent' command;
    • Expected Result:
      <p style="margin-left: 40px;">
      	This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">CKEditor</a>.</p>
      
    • Actual Result: Javascript error thrown.
      <p style="margin-left: 40px;">
      	<span _fck_bookmark="1" style="display: none;">&nbsp;</span></p>
      <p style="margin-left: 40px;">
      	This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">CKEditor</a>.</p>
      
#3580 IE: switching to Source in Ajax example raises an error IE Confirmed Review+ Martin Kou Bug closed Must have (possibly next milestone)
Description

Load the Ajax sample in IE, switch to source mode and it raises an error.

The Image() method of the undo system is called twice and the second time editor.getSnapshot() returns false.

#3591 Flash url isn't editable after reload Confirmed Review+ Garry Yao Bug closed Must have (possibly next milestone)
Description

Seems to work fine in IE and fails elsewhere:

  1. Load Replace by class sample
  2. Insert a flash movie "abc.swf", set some width and height.
  3. Press OK to close the dialog
  4. Switch to source and back to design.
  5. Open the properties of the flash object.
  6. The url is lost.
#3608 Create list on empty document error Confirmed Review+ Garry Yao Bug closed Must have (possibly next milestone)
Description

Some serious regression bug occurred in all browsers with different symptom.

Reproducing Procedures

  1. Open the replace by class example page in IE.
  2. Click on 'New Page' to clear document;
  3. Now click on Ordered List to begin creating list;
    • Actual Result : JavaScript error occured, when beginning to type, the text doesn't fall into a list item.
#3609 Parser fixbody option should align with enterMode Review+ Tobiasz Cudnik Bug closed Must have (possibly next milestone)
Description

Any form of paragraph wrapping should respect the enterMode option:

Reproducing Procedures

  1. Open the replace by class example page with enterMode set to 'div' , initial with the following content:
    fixBody
    
  2. Switch to wysiwyg mode and switch back;
    • Actual Result : Source codes now as :
       <p>
      	fixBody</p>
      
    • Expected Result :
        <div>
      	  fixBody</div>
      
#3650 Delete rows/columns/cells commands do not work when text is selected Review+ Martin Kou Bug closed Must have (possibly next milestone)
Description

To reproduce:

  1. Create a default 2x3 table.
  2. Right click on one of the cells.
  3. Try any one of the delete rows/columns/cells commands.
  4. Nothing happens.
#3657 'Select All' result in content change Confirmed Review+ Garry Yao Bug closed Must have (possibly next milestone)
Description

Reproducing Procedures

  1. Open the replace by class example page in FF with the following content;
    <ul><li>item</li></ul>
    
  2. Click on 'Select All' button, after this step, the selection now is actually as:
    ^<ul><li>item</li></ul>^
    
    • Expected Result: The document content remain unchanged.
    • Actual Result: There's an paragraph established before the list:
      <p>
      	<br />
      </p>
      <ul>
      	<li>
      		item</li>
      </ul>
      
#3659 newpage undo problem Confirmed Review+ Doc Garry Yao Bug closed Must have (possibly next milestone)
Description

Reproducing Procedures

  1. Open the replace by class example page in FF;
  2. Click 'New Page' to empty document;
  3. Press 'Undo' button;
    • Expected Result: The original document has been reverted.
    • Actual Result: The document remains empty, and actually you need two more 'Undo' to revert it back.
#3668 [IE] Combo doesn't show dropdown on second open IE Bug closed Must have (possibly next milestone)
Description

Reproducing Procedures

  1. Open the replace by class example page in IE;
  2. Click on 'Style' combo to show dropdown;
  3. Click on 'Style' combo to close it, and click again to open.
    • Actual Result: Combo dropdown doesn't open.
#3681 [Webkit] Shift enter broken Webkit Confirmed Review+ Garry Yao Bug closed Must have (possibly next milestone)
Description

Reproducing Procedures

  1. Open the replace by class example page in FF;
  2. Move cursor inside the text, and press 'Shift-Enter';
    • Expected Result: Link break introduced with cursor blinking in front of next paragraph, and If you continue to press this keystroke many times until the the content is outside viewport, latest linebreak will also be scrolled into view;
    • Actual Result: The cursor is still at the end of the first paragraph.
#3688 JavaScript error at loading Review+ Martin Kou Bug closed Must have (possibly next milestone)
Description

To reproduce:

  1. Download today's SVN trunk.
  2. Open replacebyclass.html in any browser.
  3. JavaScript error, the editor does not appear.
#3695 Add missing entries to all language files Review+ Artur Formella Task closed Must have (possibly next milestone)
Description

"common.unavailable" entry is missing in many languages.

#3710 CKEditor doesn't support <style> tag in text area. IBM Confirmed Review+ Martin Kou Bug closed Must have (possibly next milestone)
Description

When I switch to the "Code" view and paste the content inlcuding custome style, like below and then back to "preview" view, the below content can NOT be rendered correctly. In FF3, no any content can be rendered and error comes out "a.htmlParser.cdata is not a constructor". In IE7, no error but the style definition has been removed. And I have tested in FCKeditor 2.6.4, the below content can be rendered correctly.

Does anybody know how to solve such issue?

<p><style type="text/css">td.mystyle h4 {font-size: 1.6667em;color: #f8ae4e;}</style></p> <table dir="ltr">

<tbody>

<tr>

<td class="mystyle"> <h4><strong>Welcome</strong></h4> <p>You're at the Welcome page.</p> </td>

</tr>

</tbody>

</table>

#3715 Pre output formatting is broken IBM Confirmed Review+ Garry Yao Bug closed Must have (possibly next milestone)
Description

Note this's not a DUP of #3188, where this ticket should deal with the basic <pre> content foramtting.

Reproducing Procedures

  1. Open the replace by class example page in FF;
  2. Load the following content with 'source' mode;
    <pre>
    first line
    second line
    
    </pre>
    
  3. Switch to 'wysiwyg' mode and switch back.
    • Actual Result:
      <pre>
      	first line second line</pre>
      
    • Expected Result:
      <pre>first line
      second line
      
      </pre>
      
#3735 IE: JavaScript error when switching to source Confirmed IE 3.0RC Review+ Tobiasz Cudnik Bug closed Must have (possibly next milestone)
Description

With IE, when switching to source mode, a JavaScript error is thrown.

#3749 Cut/Copy/Paste context menu options are always disabled. 3.0RC Review+ Martin Kou Bug closed Must have (possibly next milestone)
Description

The context menu options "Cut/Copy/Paste" are always disabled, no matter which browser and no matter if we have anything in clipboard.

#3750 TC CKEDITOR.htmlParser infinite loop RC Confirmed Review+ Garry Yao Bug closed Must have (possibly next milestone)
Description

Regression of #3609, the parsing is running into infinite loop.

#3757 Find link text cause error Confirmed Review+ 3.0RC Garry Yao Bug closed Must have (possibly next milestone)
Description

The problem happened generally for all form fields.

Reproducing Procedures

  1. Open the replace by class example page in FF;
  2. Open 'Find' dialog and search for 'ckeditor';
    • Actual Result: JavaScript error occurred.
#3773 [IE] Remove list not working IE Confirmed Review+ Garry Yao Bug closed Must have (possibly next milestone)
Description

Reproducing Procedures

  1. Open the replace by class example page in IE;
  2. Load eidtor with the following content and selection;
    ^line1
    <br />
    line2^
    
  3. Click on 'Numbered List' and Click on it again;
    • Actual Result: Two lines were merged together.
#3778 CKPackager: Operators precedence is ignored by the conditional operator Confirmed Review+ Frederico Caldeira Knabben Bug closed Must have (possibly next milestone)
Description

The following snipped get broken by the packager:

var a = ( b = c ) ? d : e;

The parenthesis get lost.

#3812 CKEditor's editor area is not editable in IE8/IE7 and no data is displayed in Firefox Oracle Review+ Martin Kou Bug closed Must have (possibly next milestone)
Description

To reproduce this issue in IE8/7, please open the attached sample file in IE8/7.

  1. Click the "Click me for multiple times to see the issue" button and you will get an alert as 'instance ready' and press ok. Now you will see the editor's default data.
  1. Repeat the step no.1 again, now click on the editor's content 'Do you see the problem..!!!' but you can't edit/change the content for atleast 2 minutes.

If you don't see the problem, please repeat the steps 1 & 2 again.

To reproduce this issue in Firefox 3.x, please open the attached sample file in FF3.x.

  1. Click the "Click me for multiple times to see the issue" button, now you will not see any data inside the editor's area. Now click on the source control, you will get the alert 'instance ready' and then you will see the data in source mode.


This is a show stopper since the editor is not editable in IE and no data is displayed in FF.

#3821 JAWS problem reading toolbar items and dialog inputs IBM Review+ Martin Kou Bug closed Must have (possibly next milestone)
Description

When virtual PC cursor is ON:

  • toolbar items are not identified as either buttons or links. Only their name is read.
  • dialog input fields are read correctly.

When virtual PC cursor is OFF:

  • toolbar itmes are identified and read correctly as buttons and links in cases of combos.
  • dialog input fields are not read correctly.

A consistent approach is needed.

#3849 Switching list type at the end of documet crashes IE8. Confirmed IE Oracle Review+ Martin Kou Bug closed Must have (possibly next milestone)
Description

This issue affects only IE8. To reproduce:

  1. Open replacebyclass.html in IE8.
  2. Press Enter a few times to create some empty paragraphs, and type some text at the last paragraph created.
  3. Make sure your caret is now at the end of the last paragraph - the bug only occurs when the caret is at the end of the document.
  4. Click "Insert/Remove Numbered List".
  5. Click "Insert/Remove Bulleted List".
  6. IE8 crashes.
#3864 Selection problem after inserting new link Firefox IBM Confirmed Review+ Garry Yao Bug closed Must have (possibly next milestone)
Description

To reproduce:

  1. Open nightly Ajax sample
  2. In a new document, add a link
  3. After the link is inserted, attempt to delete the link using backspace.

Result: the link seems uneditable until additional text is added.

#3871 Undo resets Redo buffer when undoing to beginning IBM Confirmed Review+ Garry Yao Bug closed Must have (possibly next milestone)
Description

The redo buffer is reset when using the undo feature all the way to the beginning.

To reproduce:

  1. Open nightly Ajax sample
  2. Add some text on a few lines
  3. Use undo until reaching the initial state
  4. Attempt to redo last undo

Result: Redo is enabled but does not have any more state

Expected: Redo should maintain state and allow redoing even after reaching the end of the undo stack

#3894 [FF3] Script load and editor init problem IBM Confirmed Review+ Garry Yao Bug closed Must have (possibly next milestone)
Description

Please see attached test case. You must edit the file and replace the url to your ckeditor.js file (not ckeditor_source.js).

When the editor is created after loading the page, it seems to hang and not call instanceReady.

If the first instance is destroyed and subsequent ones created, they will initialize correctly.

This problem is only on FF3. Tested on FF2 and IE6 without a problem.

#3919 Justify and indent/outdent commands are broken Confirmed Review+ Martin Kou Bug closed Must have (possibly next milestone)
Description

Latest SVN trunk version (3851), these commands fail to work completely. Seems to be caused by bookmarks not being cleared up but left in the DOM. Actual error thrown is in the getNextParagraph method of the domiterator plugin. (this._.lastNode is null).

Verified on Mac OSX 10.5.7 with Firefox 3.5 and Safari 4.0.2

#3928 Link plugin badly broken - <a> have incorrect href attribute Confirmed Review+ Garry Yao Bug closed Must have (possibly next milestone)
Description

Steps to reproduce.

  1. Type some text.
  2. Select some and click the link button
  3. Enter a valid URL
  4. Call editor.getData() or look at source

The URL instead of "http://www.foo.com" is set to "javascript:void(0/*###*/"

Verified on the latest SVN revision (3855) on Mac OS X 10.5 with Firefox 3.5 and Safari 4.0.2

#4057 Anchor disappearing Confirmed Review+ Garry Yao Bug closed Must have (possibly next milestone)
Description

There were too problems with hidden fields.

Reproducing Procedures

  1. Open the "replace by class" page, empty the document;
  2. Insert an anchor;
  3. Switch to 'Source' and twice;
    • Actual Result: The anchor is disappeared.
#4059 Link dialog should not edit anchor IE Confirmed Bug closed Must have (possibly next milestone)
Description

When open link dialog on anchor, it should generate a link around the anchor instead of change the anchor element itself.

Reproducing Procedures

  1. Open the "replace by class" page,insert an anchor;
  2. Click the anchor and open link dialog;
  3. Fill the url field and click OK;
    • Actual Result: Javascript error thrown.
#4164 Pasting disabled if forcePasteAsPlainText = true Review+ Artur Formella Bug closed Must have (possibly next milestone)
Description

Set

CKEDITOR.config.forcePasteAsPlainText = true;

and try to paste something in the source mode - it is impossible.

#4193 [FF3.5] Automatic font color produces empty span Confirmed Firefox Review+ Tobiasz Cudnik Bug closed Must have (possibly next milestone)
Description

Automatic font color produces empty span on Firefox 3.5

TC

  1. Select all text inside the editor
  2. Apply automatic option for font color
  3. Select some part of the text
  4. Apply any font color

Result:

<p>
	f<span style="">o</span>o</p>

Related with #3891.

#4237 CKEditor's ToolBar is chopped off in Safari browser 3.x Confirmed HasTest Oracle Webkit Review+ Tobiasz Cudnik Bug closed Must have (possibly next milestone)
Description

Attached the sample html and config.js file to reproduce the issue. Also attached the screen-shot for the issue.

#4385 CheckDirty is not returning the correct state Oracle Confirmed Review+ Garry Yao Bug closed Must have (possibly next milestone)
Description

When i set empty data to the editor using the setdata method, checkdirty is returing the wrong state. Please follow the below steps to see the issue.

  1. Open the attached "replacebycode.html" file in IE and click the checkdirty button, this will return the message as 'false'.
  2. Now refresh the page and focus the editor area using the mouse cursor and select the checkdirty button, now you will get a message as "true" eventhough we don't change anything inside the editor area.
#4504 Enterkey is broken on dialog 'OK'/'Cancel' button Confirmed Review+ Garry Yao Bug closed Must have (possibly next milestone)
Description

It's not able to trigger buttons' click behavior with 'enter key' in trunk.

#4653 [FF] Panel content invisible on first show Firefox Confirmed Review+ Frederico Caldeira Knabben Bug closed Must have (possibly next milestone)
Description

Panel content suffer from invisibility with a visibility:inherit on the <html> element.
Regression of [4454].

#4656 Spaces are getting truncated Confirmed Review+ Garry Yao Bug closed Must have (possibly next milestone)
Description

On the trunk version, spaces close to inline elements are getting truncated. This can be verified by simply loading the replacebyclass sample. You'll have the following loaded in the editor:

This is somesample text. You are usingCKEditor.

#4686 Format combo shows incorrect value Confirmed Review+ Garry Yao Bug closed Must have (possibly next milestone)
Description

The format combo is not showing the current block style incorrectly. When loading a sample you will note that the combo displays "p", instead of "Normal". If you apply the "Heading 1" option instead, it shows "h1".

This is a regression.

#4687 Release version is not working properly Confirmed Review+ Garry Yao Bug closed Must have (possibly next milestone)
Description

I've just opened the nightly build and noticed that several plugin files are being downloaded. 26 files are being downloaded and a js error is being thrown.

#4695 CKPackager remove mandatory braces Confirmed Review+ Garry Yao Bug closed Must have (possibly next milestone)
Description

Having the following input:

if( typeof foo == 'object' )
{
  for( var i in foo )
    if( foo.hasOwnProperty( i ) )
          bar = foo[ i ];
}
else 
   bar = foo;

Will be compressed into:

if( typeof foo == 'object' )
  for( var i in foo )
    if( foo.hasOwnProperty( i ) )
          bar = foo[ i ];
else 
   bar = foo;
#4733 Image dialog first open causes unresponsive script dialog in Firefox Confirmed Safari Firefox Review+ Garry Yao Bug closed Must have (possibly next milestone)
Description

I get Firefox hangs up randomly occurs in Firefox, when checking the 'visibility' CSS style of an iframe element during 'onshow' event handing.

#4758 Multiple editors are not working in the 3.1.x branch Confirmed Firefox Review+ Frederico Caldeira Knabben Bug closed Must have (possibly next milestone)
Description

The editor breaks when using the replace method to create more than two editor instances. I'll attach a test page for it.

Confirmed with FF. Ok with IE.

#4774 Enter key in the middle of a paragraph result in incorrect cursor position Confirmed Review+ Garry Yao Bug closed Must have (possibly next milestone)
Description
  1. Open the 'replacebyclass' sample page, put cursor among the text and press 'Enter'.
    • Expected Result: Paragraph is split up and cursor is blinking at the front of the second paragraph.
    • Actual Result: Paragraph is split up and cursor is blinking at the front of the first paragraph.
#4874 IE: Context menu is not working for object selections Confirmed IE Review+ Garry Yao Bug closed Must have (possibly next milestone)
Description

When opening the context menu for object selections, like image, flash or anchor, and then select the relative properties dialog, the dialog doesn't get filled. By closing the dialog is also possible to see that the object lost its selection.

#4930 Dialogs are broken in V2 and Office 2003 skin Confirmed Review+ Frederico Caldeira Knabben Bug closed Must have (possibly next milestone)
Description

(regression).

Confirmed in every tested browser: IE8, IE6, Opera 10, Safari 4, FF 3.5, although the results are a bit different in every browser. I have attached a screenshot from IE6.

Previously dialod windows had fixed width, now the size of a dialog box depends on elements inside of it.

#5117 List creation is broken Confirmed Review+ Garry Yao Bug closed Must have (possibly next milestone)
Description

Loading a sample and trying to convert the existing paragraph into a list throws a js error.

#5465 forceEnterMode affects lists Confirmed IBM Review+ Garry Yao Bug closed Must have (possibly next milestone)
Description

When using config.forceEnterMode=true it affects how lists are created.

  1. Create a single list item
  1. Go to the end of the item and hit Enter

Notice that a new paragraph is added to the list.

<ol>
    <li>test <br/></li>
    <p> <br/></p>
</ol>
}}

#5683 [IE] it is impossible to insert a image in IE6 IE Confirmed Review+ Garry Yao Bug closed Must have (possibly next milestone)
Description

in IE6,when click the image button, a error throws

also can reproduce it in IE8,set browser mode: ie7, text mode: quriks mode.

#5780 Text selection disappears when open the link dialog Confirmed Firefox Safari Review+ Garry Yao Bug closed Must have (possibly next milestone)
Description

I select a text to make a link. Then I open the link dialog and the mark usually disappears. This is a link displayed in the editor, instead of the selected text is linked. I have the problem with Firefox 3.6. You can check this on the CKEditor demo page.

#5843 In CKEditor 3.3: When we set the focus in the 'instanceReady' event, FF3.6 is giving js error Oracle Confirmed Review+ Tobiasz Cudnik Bug closed Must have (possibly next milestone)
Description

When we set the editor focus in the 'instanceReady' event, we are getting the javascript error. This issue is only reproducible if the stand-alone html file(attahced:focusissue.html) is accessed from the webserver. But when i try to reproduce it from the local drive, issue was appearing intermittently. So to reproduce this issue, copy the attached sample in the webserver folder and access it in firefox 3.6 or above. Once the editor is loaded in the browser click on the 'Click me to see the issue' button once or twise. After that you will see the error(screen-shot is attached) in fire bug. After getting this error, editor area is uneditable.

#6501 [IE9] context menu item layout is broken IE Garry Yao Bug closed Must have (possibly next milestone)
Description

Seen in the attached screenshot, context menu item has smaller occupation as it should.

#6532 IE9: Clicking on WYSIWYG area don't set focus IE Bug closed Must have (possibly next milestone)
Description

To reproduce the issue:

  1. Click 'New page' on toolbar.
  2. Click in the middle of WYSIWYG area.

Expected: Focus is set into editor and you can type text.
Actual: Focus is lost.

To type text again you have to click exactly in the place where editing is allowed. In this case - left upper corner of the editor.

#6595 [IE9] Paste from Word floods line-breaks IE9 Bug closed Must have (possibly next milestone)
Description

Occurs in IE9, works well in lower versions.

  1. Copy the entire contents in the attached .doc file.
  2. Paste into an empty editor with Ctrl-V.
    • Actual Result: Lots of extra lines appeared.
#6898 [IE6] Kama toolbar buttons invisible on RTL UI IE Garry Yao Bug closed Must have (possibly next milestone)
Description

In IE6, Kama toolbar buttons are invisible when using RTL UI. They became partially visible after switching to the Source View mode.

#9690 [IE10] Paste from MS-Word doesn't work IE Piotrek Koszuliński Bug closed Must have (possibly next milestone)
Description

The clipboard content is not recognized as from MS-word, when pasting in IE10.

It's reproduced with IE10 on Windows 8, MS-Word 2010, version 14.0

#11376 IE11: Loss of text when pasting bullet lists from Word IE11 Support Szymon Cofalik Bug closed Must have (possibly next milestone)
Description

When pasting a bullet list from Microsoft Word then text gets replaced with "<>".

Steps to reproduce:

  1. Copy a bullet list from Word using CTRL+C
  2. Go to CKEditor and paste the content using CTRL+V
  3. You will see that only one item is left and the text has been replaced with "<>".

Browser: IE 11.0.9600 OS: Windows 7 Word: Microsoft Office Professional 2010

#13011 [IE8] Anchors are duplicated when DnD IE8 Artur Delura Bug closed Must have (possibly next milestone)
Description

After #12806:

  1. Open replacebycode sample.
  2. Drag anchor.
  3. Now you have 2 anchors.
#11956 [IE, Chrome, Opera] Dialog box doesn't open on two words links with background. IE Blink Tomasz Jakut Bug closed Nice to have (we want to work on it)
Description
  1. Open editor with following content
    Hello <a href="http://en.wikipedia.org/wiki/Neil_Armstrong">Neil Arm</a> .
    
  2. Select link Neil Arm.
  3. Change selection background color.
  4. Double click Arm word to open link dialog.

Actual result: Dialog won't open.

Please note: Double click on word Neil open dialog properly.

#12459 Exception occurs after using Replace All and closing Find and Replace dialog in IE11 IE kkrzton Bug review Nice to have (we want to work on it)
Description

When i use Replace all feature and close the replace all dialog after that, an exception occurs in IE11.

Environment: OS:Windows 7 x64 Browser: Internet Explorer 11.0.9600.17280 (Update 11.0.12)

Reproducible on demo page: http://ckeditor.com/demo#full

Steps:

  1. Remove all sample text and images from the CKEditor on the demo page.
  2. Type the following text: test text number 1
  3. Press Replace button on the toolbar
  4. In the Find what field type the following text: number
  5. In the Replace with field type the following text: N
  6. Press Replace All button
  7. Press OK button on the notification Message Box
  8. Press close button on the Find and Replace dialog
  9. Look in the browser console for the error.

Screen shot is attached.

#13332 IE: collapsed selection doesn't match styling. IE Tade0 Bug review Nice to have (we want to work on it)
Description

Problem can be reproduced from CKEditor 4.0 (works fine in 4.0 beta) in IE9-11.

To reproduce for inline styles:

  1. Create a paragraph and enter text, say "This is plain text"
  2. Select whole paragraph and apply Bold
  3. Click once inside paragraph and try to apply any inline style from styles dropdown.

Result: In IE, the inline style gets applied to whole paragraph even when text was not selected after clicking once.


To reproduce for block styles:

  1. Create 3 paragraphs of text
  2. Select them all with a mouse and apply "Italic Title" from styles dropdown.
  3. Click at the end of second element (behind it actually)
  4. Apply "Special Container" style

Result: all paragraphs get styled while only should be changed.

NOTE: This issue has been reported on our support channel. User claims that the range.collapsed property returns false in IE whereas in e.g Chrome it returns true.

#14629 IE11/EDGE: extra SPAN gets added everytime Find dialog identifies the word in the editor IE11 EDGE IBM beata_delura Bug closed Nice to have (we want to work on it)
Description

Steps to reproduce

  1. Update find_highlight config option to
config.find_highlight = { element : 'span', styles : { 'background-color' : '#004', 'color' : '#fff', 'border' : '1px solid #004' } };
  1. Open any CKEditor sample and type some text, e.g. test.
  2. Open Find & Replace dialog.
  3. Click 'Find' button to search for a word, e.g. test.
  4. Click 'Cancel' button.
  5. Switch to 'Source' view.

Actual result

A SPAN <span style="border-image: none;"> gets added around the 'test' word.

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

IE11 and MS Edge

#14845 Using justify in BR mode doesn't remove trailing BR's in IE thus resulting in new line Support IE10 IE9 IE8 Bug confirmed Nice to have (we want to work on it)
Description

Steps to reproduce

  1. Configure CKEditor so that it uses (you can also use allowedContent:true for simplicity)
    var editor = CKEDITOR.replace( 'editor1', {
    	enterMode : CKEDITOR.ENTER_BR,	
    	allowedContent : '*{*}'
    });
    
  2. Switch to source mode and paste below HTML:
    <div >
    	<div >
    		<div style="font-family: tahoma,arial; font-size: 9pt;">
    			<div  style="padding: 4px;">
    				<div  >
    					<span style="border: 0pt rgb(0, 0, 0); text-align: left; color: rgb(0, 0, 0); padding-top: 0px; padding-bottom: 0px; font-style: normal; font-weight: normal; text-decoration: none; margin-top: 0px; margin-bottom: 0px;">
    						<span style="padding-top: 0px; padding-bottom: 0px; margin-top: 0px; margin-bottom: 0px;">
    							<span class="ddspellcheck" id="scayt3">jkhgkjh</span>
    						</span>
    						<br>
    						<span style="padding-top: 0px; padding-bottom: 0px; margin-top: 0px; margin-bottom: 0px;">
    							<span class="ddspellcheck" id="scayt2">gkjhgkjh</span>
    						</span>
    						<br>
    						<span style="padding-top: 0px; padding-bottom: 0px; margin-top: 0px; margin-bottom: 0px;">
    							<span class="ddspellcheck" id="scayt1">gkjhlgfkhj</span>
    						</span>
    					</span>
    					<br>
    				</div>
    			</div>
    		</div>
    	</div>
    </div>
    
  3. Switch to wysiwyg, click inside middle line and click justify center.

Expected result

Middle line gets centered.

Actual result

Middle line gets centred but extra line is added. This is happening because BR in first span (which gets wrapped into div) doesn't get removed like in modern browsers.

<div>
	<div>
		<div style="font-family: tahoma,arial; font-size: 9pt;">
			<div style="padding: 4px;">
				<div>
					<span style="border: 0pt rgb(0, 0, 0); text-align: left; color: rgb(0, 0, 0); padding-top: 0px; padding-bottom: 0px; font-style: normal; font-weight: normal; text-decoration: none; margin-top: 0px; margin-bottom: 0px;">
						<span style="padding-top: 0px; padding-bottom: 0px; margin-top: 0px; margin-bottom: 0px;">
							<span class="ddspellcheck" id="scayt3">jkhgkjh</span> 
						</span>
					</span>
					<br /> <!-- This doesn't get reoved -->
					&nbsp;
				</div>
				<div style="text-align: center;">
					<span style="padding-top: 0px; padding-bottom: 0px; margin-top: 0px; margin-bottom: 0px;">
						<span class="ddspellcheck" id="scayt2">gkjhgkjh</span> 
					</span>
				</div>

				<div>
					<span style="border: 0pt rgb(0, 0, 0); text-align: left; color: rgb(0, 0, 0); padding-top: 0px; padding-bottom: 0px; font-style: normal; font-weight: normal; text-decoration: none; margin-top: 0px; margin-bottom: 0px;">
						<span style="padding-top: 0px; padding-bottom: 0px; margin-top: 0px; margin-bottom: 0px;">
							<span class="ddspellcheck" id="scayt1">gkjhlgfkhj</span> 
						</span> 
					</span>
				</div>
			</div>
		</div>
	</div>
</div>

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

Problem can be reproduced from CKEditor 4.0 in IE10 and below

#35 Use floating panels for dialogs Review+ Martin Kou New Feature closed Normal
Description

Users may have problems with popup blockers and FCKeditor dialogs. This is quite annoying for them, and we should propose a solution for it.

The most obvious one is implementing a new dialog mechanism which would use floating panes (FCKPanel) to load the dialogs pages.

An important detail in this feature is that the user must not be able to play with the editor area or toolbar while the dialog is opened. They must instead be able to interact with the rest of the page. Maybe it would be possible to cover the editor with a transparent thing (IFRAME) that would block all user actions.

#81 IE: JavaScript error with certain markup IE Bug closed Normal
Description

To reproduce, in MSIE:


  1. Load demo at http://www.fckeditor.net/demo
  1. Click to 'source mode'
  1. Delete all markup and paste either of the two snippets below in
  1. Toggle to normal mode
  1. Toggle to source mode again. You will get an error.

Markup 1:

<p><em>Hello <p>

Markup 2:

<p><font size="1"><b>Hello</b></font><strong><font size="1">
<p>
#82 EMBED tag inside OBJECT is removed by IE SF Confirmed IE Bug closed Normal
Description

When adding a flash object through the SOURCE view and saving a page with IE it strips out the <embed> tag. This leaves the flash to work in IE but not in Firefox (1.0).

When editing in Firefox - however - the <embed> tag remains and all is well.


Moved from SF:
http://sourceforge.net/tracker/index.php?func=detail&aid=1082447&group_id=75348&atid=543653

#89 IE7: Clipboard access has to be confirmed two to three times IE, Confirmed Bug closed Normal
Description

When accessing the clipboard, confirmation is requested by Internet Explorer 7 more than one time (e.g. two or three times).

Kindest regards from

Lothar Bongartz moove

lbongartz@…

#90 Disappearing <br /> in non-empty list item IE, Confirmed Bug closed Normal
Description

I would like to create XHTML as the following:

<ul>
    <li class="decimal">
        <span class="ol">1. </span><em>Test 1</em><br />
        This line should appear on a new line, because a '<br />'
        was entered with 'SHIFT + ENTER, just after '<em>Test 1</em>'.
    </li> 
</ul>

But in fact in (Internet Explorer 7) when I hit SHIFT + ENTER a single time, the <br /> diasappears (for example: after switching to source-mode and back).

In Firefox i've no problem at all and SHIFT + ENTER behaves like expected!

I found two 'solutions':

  1. Remove the <em> and </em> surrounding 'Test 1'
  2. Hit SHIFT + ENTER twice!!!!

For me this is a huge problem, because the users of my CMS (most of them use Internet Explorer) of course would never think about hitting SHIFT + ENTER twice.

Regards,
Koen Willems

#95 Content page broken with tag <META ...>. IE, Confirmed Martin Kou Bug closed Normal
Description

After a html insertion in "source" mode, and switch between "wysiwyg", "source" mode, content is broken: Insert HTML:

<html>
<head>
<meta http-equiv="Content-Typ!" content="text/html; charset=windows-1251">
<title>Title</title>
</head>
<body>
Some text.
</body>
</html>

After switch between "wysiwyg", "source" mode:

<p>
<meta content="text/html; charset=windows-1251" http-equiv="Content-Typ!" /></p>

Browser IE 6.0.

#97 IE7: "Error: no such interface supported" when opening custom file browser IE IE7 WorksForMe Bug closed Normal
Description

Effect

IE7 pops up the following error: Error: no such interface supported Custom file browser window cannot be opened in IE7.

Steps to Reproduce

  1. Open an FCKEditor that uses a custom file browser in IE7 on Windows.
  1. Click the 'image' button.
  1. Click the 'Browse Server' button in the image dialog.

Comments

After debugging for a while I found that the error was happening on line 157 of editor/dialog/common/fck_dialog_common.js :

window.open( url, 'FCKBrowseWindow', sOptions ) ;

The window object at that point seems to look like a valid object, and the window.open function prints out normally as:

function open () {
    [native code]
}

For some reason however, when window.open is called on that line, the "No such interface supported" error occurs. I attempted to put the window.open call into a try{} block inside a loop to see if subsequent calls would work, but to no avail. The window would not open on the first or subsequent calls to the method.

#121 Editor size is wrong in full-window mode inside frameset Confirmed IE Martin Kou Bug closed Normal
Description

<frameset cols="175,*">

<frame name="left" src="left.asp" target="main" scrolling="auto"> <frame name="main" src="main.asp">

</frameset>

main.asp contains a fckeditor.

bug: the editor's size (width & height) is wrong on full-window mode.

editor uses browser's available width and height, but this is not page's available size when page in a frame.

#122 Disappearing BR IE Confirmed Bug closed Normal
Description

Go to code view and enter this:

<div><strong>This is a text in </strong>bold.</div>

Go to WYSIWYG mode and put the cursor just before the b (from 'bold') and press SHIFT+ENTER. Line correctly wraps. Go to code view and presto.... the BR is gone (and when you switch back to WYSIWYG mode the lines have merged).

#123 Support for domain relaxing Review+ Frederico Caldeira Knabben New Feature closed Normal
Description

Please provide support for domain relaxing.

In order to do some cross domain ajax requests for our internal sites, I would like to change our pages to set the document.domain to our intranet domain (domain relaxing: http://msdn.microsoft.com/library/default.asp?url=/workshop/author/dhtml/reference/properties/domain.asp). However, doing so causes fckeditor to break. This is because domain relaxing requires all frames that want communicate through javascript to have the same document.domain. I did a search and replace through the fckeditor files and I was able to set the document.domain on almost everything. However I get an access restriction. The fckpanel uses window.createPopup for IE. Microsoft's documentation (http://msdn.microsoft.com/library/default.asp?url=/workshop/author/dhtml/reference/methods/createpopup.asp) states:

Note Pages that change the document.domain property before creating the popup object may receive an 'Access is denied' error message when accessing the popup object. Changes made to document.domain in the calling page will not propogate to the new popup object; this is currently a design restriction to limit access with the popup object.

I also tried to force it to go down the non IE pathway, but that doesn't work within IE.

#129 Pasting is not working with "Allow paste operation via script" disabled IE Confirmed Frederico Caldeira Knabben Bug closed Normal
Description

Using windows XP SP2 with Internet Explorer 6.0, cut, copy, paste and past as plain text are not working in text area.

#141 IE: When editor gets the focus on load, the "del" key is not functional SF IE Confirmed Bug closed Normal
Description

Hi,

I found a reproducible problem with the versions 2.4 and 2.3.

Although the fckconfig.js contains...

FCKConfig.StartupFocus = false ;

... the fckeditor gets the focus after page is (re)loaded. In such case, the "Del"-key (character delete) is not functional until I click the mouse some ware in the text or change the focus to another control and then back to the fckeditor.

To reproduce this, please do the following:

  1. Download the 2.4 Version, you don't have to change anything.
  2. Start "default.html" (local file in the _sample directory) in the IE (6.1 or 7.0)
  3. Click with the mouse some ware on the text within the editor, you must see the cursor now.
  4. Click outside the editor (but in the same frame) with the right mouse key and select from the context menu "Refresh" (i.e. reload the frame)

The frame with the FCKeditor will be reloaded and the fckeditor will get the focus automatically after that - you will see the cursor within the editor. Try the "del"-key, which has no effect (you can not delete any character) until you click with the mouse within the editor or change the focus.

On some of my html pages I can reproduce this behavior after a page load (not only on reload), so there is a real focus problem within the new version.

Regards Peter


Moved from SF:
http://sourceforge.net/tracker/index.php?func=detail&aid=1652033&group_id=75348&atid=543653

#142 EnterMode = br produces <p> when switching back from source SF IE Bug closed Normal
Description
FCKConfig.EnterMode = 'br'

so when hitting ENTER, a <BR/> is used.

Add some text and use ENTER to go to a new line. then switch to "source code"; the source code should look like this:

<p>line1 aaa<br />
line2 bbb<br />
line3 ccc</p>

now exit from "source code" mode and hit ENTER. a new paragraph is created (<P>); this mode remains active.

this doesn't happen if after exiting from "source code" mode, you move the cursor somewhere inside the existing text.


Moved from SF:
http://sourceforge.net/tracker/index.php?func=detail&aid=1648765&group_id=75348&atid=543653

#166 Viewing Source can change the order of elements in IE IE Confirmed Bug closed Normal
Description

Use the following source and toggle "View Source". On the first occasion the bottom item leaps to the top. Subsequent attempts to view source give a javascript error.

<p><span class="Normal"> <p>Line 1</p> </span><span class="Code">Line 2<br /> Line 3 <p>&nbsp;</p> </span></p> <div align="center">Line 4</div> <p>&nbsp;</p>

#175 Percent sign in mailto: link breaks link tool SF Confirmed IE7 Bug closed Normal
Description

I tested this on multiple versions of FCKeditor i have back to around 2.0 and all exhibit the same behavior.

I recreated this error like so:

  1. Open new FCKeditor and switch to source view.
  1. Enter html mailto: link where the email address contains a percent sign (we use % signs for macros). Example:
<a href="mailto:useruser%name@host.com">E-Mail me!</a>. here is more text.
  1. Switch back to html view.
  1. Select and try to link some of the other text, like the word "more" to a website. the dialog box comes up, lets you type in the url, and then when you save it, it throws a js error, and in your html code, it puts in javascript code like the following:
<a href="mailto:useruser%name@host.com">E-Mail me!</a>. here is 
<a href="javascript:void(0);/*1168555255689*/">more</a> text.

Moved from SF:
http://sourceforge.net/tracker/index.php?func=detail&aid=1633584&group_id=75348&atid=543653

1 2 3 4 5 6 7 8 9 10 11 12
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