Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (701 - 800 of 2591)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
Ticket Summary Status Owner Type Priority Milestone
#8166 Problems in IE when pressing CRTL+B on bolded text confirmed Bug Normal
Description

This ticket was first reported in forum http://cksource.com/forums/viewtopic.php?f=11&t=22912

To reproduce:

  1. Open api sample and clean CKEditor contents
  2. Press bold button and type Testing statement
  3. Place cursor here Testing s^tatement
  4. In insertHTML text-area paste <p>sample to be inserted by insertHTMl</p> and press 'Insert HTML'. Result should be as in finding2.JPG.
  5. Select using a mouse word 'statement' and what was pasted between it. See finding3.JPG.
  6. Press CRTL+B one or two times.

If you press CRTL+B two times it will cause JS error in IE8 and IE9:
IE8 yields:
Message: 'null' is empty or not an object
Line: 63
URI: /_source/core/dom/walker.js

IE9 yields:
Message: Can't get property „getParent”: Object is null or undefined
Line: 1568
URI: /_source/core/dom/range.js

This is reproducible from CKE 3.4. Before 3.4 there was no error but unbolding was weird. Some parts of text were duplicated

If you press CRTL+B once than in IE6 and IE7, the phrase 'sample to be inserted by insertHTML' gets unboladed and jumps up.

This is reproducible form CKE 3.6.1 rev [6919]. Before this revision JS error was thrown.

#8169 Webkit editor doesn't scroll without focus. confirmed Bug Normal
Description

Issue found when reproducing #7635

  1. Open replacebycode sample page
  2. Paste the following code
    var doScroll = function(collapseToStart) {
     var e = CKEDITOR.instances.editor1;
     var d = e.document;
     var r = new CKEDITOR.dom.range(d);
     r.selectNodeContents(d.getBody());
     r.collapse(collapseToStart);
     r.select();
     e.focus();
     e.getSelection().scrollIntoView();
    };
    var scrollToTop = function() { doScroll(true); };
    var scrollToBottom = function() { doScroll(false); };
    				
    setTimeout(scrollToBottom, 2000);
    setTimeout(scrollToTop, 3000);
    setTimeout(scrollToBottom, 4000);
    
  3. Open page in Webkit

Result: You will see that editor only scrolls down once when it has no focus. If it has focus it scrolls down-up-down.

Now add extra setTimeout function

setTimeout(scrollToTop, 1500);
setTimeout(scrollToBottom, 2000);
setTimeout(scrollToTop, 3000);
setTimeout(scrollToBottom, 4000);

If editor has no focus it scrolls down-up-down. If it has focus it scrolls up-down-up-down.

If there would be only one setTimeout function, you wouldn’t see any scrolling.

Webkit uses first function call to gain focus.

#8175 Add/edit Radio button, enabled status is not saved under IE9/10 in CKE 3.x 4.x confirmed Bug Normal
Description

Environment

Win7 ie9, ie10platform preview, CKEditor Nightly build r7095

TC

  • open any sample
  • clear content
  • Press form element -> rafio button
  • fill all fields and check "enabled"
  • press OK

Expected

Radio button is added to edit area, with Enabled status

Actual

Radio button is added, _wisually_ it is set to enabled,

  • but after double click on it, status Enabled is not set in dialog window,
  • switch to source mode:
    <p>
    	<input name="1" type="radio" value="1" /></p>
    

It works fine under IE8 and Chrome

#8177 Splitting cell vertically, causing incorrect rowspan. confirmed Bug Normal
Description

Environment

Related to #6111

TC

  • Open editor and insert table:
    <table border="1" cellpadding="1" cellspacing="1" style="width: 500px;">
    	<tbody>
    		<tr>
    			<td colspan="2" dir="rtl">
    				<strong>1</strong></td>
    			<td colspan="2">
    				<strong>2</strong></td>
    		</tr>
    		<tr>
    			<td>
    				<strong>3</strong></td>
    			<td>
    				podział poziomy ltr</td>
    			<td dir="rtl">
    				<strong><u>4</u></strong></td>
    			<td dir="rtl">
    				podział poziomy rtl</td>
    		</tr>
    		<tr>
    			<td colspan="2" dir="rtl" rowspan="3">
    				<strong>5</strong></td>
    			<td colspan="2">
    				<strong>6</strong></td>
    		</tr>
    		<tr>
    			<td colspan="2">
    				podział pionowy ltr</td>
    		</tr>
    	</tbody>
    </table>
    <p>
    	&nbsp;</p>
    
  • Switch to wysiwyg, and set cursor in cell with no. 1
  • from context menu select Cell - split vertically.

Actual result

<table border="1" cellpadding="1" cellspacing="1" style="width: 500px;">
	<tbody>
		<tr>
			<td colspan="2" dir="rtl">
				<strong>1</strong></td>
			<td colspan="2" rowspan="3">
				<strong>2</strong></td>
		</tr>
		<tr>
			<td colspan="2" dir="rtl">
				podział pionowy rtl</td>
		</tr>
		<tr>
			<td>
				<strong>3</strong></td>
			<td>
				podział poziomy ltr</td>
			<td dir="rtl">
				<strong><u>4</u></strong></td>
			<td dir="rtl">
				podział poziomy rtl</td>
		</tr>
		<tr>
			<td colspan="2" dir="rtl" rowspan="3">
				<strong>5</strong></td>
			<td colspan="2">
				<strong>6</strong></td>
		</tr>
		<tr>
			<td colspan="2">
				podział pionowy ltr</td>
		</tr>
	</tbody>
</table>
<p>
	&nbsp;</p>
#8180 FF and Opera: Dialog contents go out of dialog border when CKEditor is in RTL language confirmed Bug Normal
Description

Bug found when reproducing #6775

  1. In config.js set RTL language like 'he'.
  2. Open link dialog and move it to the right
  3. When you reach the border of browser/view pane, move the dialog to the left and bottom

Result: Dialog contents goes out of dialog borders See screenshots.

Reproducible from CKE 3.5.3

#8186 If copied MS-Word text contains a text box, then text does not display correctly in the editor confirmed Bug Normal
Description

Environment: CK Editor 5.3.1 FireFox 3.5

Steps:

  1. Create MS-Word doc consisting of text box containing some text in it
  2. Copy the text from that doc including the text box.
  3. Paste the text in ck editor.

Actual Result: The text does not display correctly in the editor.

#8189 Empty [link] tag causes content and structure loss confirmed Bug Normal
Description

In the demo or nightly demo, go into source view, delete existing HTML, and paste in the following:

<table> <tr> <td> Left cell</td> <td> <p>First paragraph.</p> <p>Second paragraph, with an empty link tag in it <link />.</p> <p>Third paragraph.</p> </td> <td>Right cell</td> </tr> </table>

Switch to WYSIWYG view. The table, row, and cells are gone, as is the content for the left cell and the first 2 paragraphs of the center cell. I've gotten this result on the latest versions of Opera, Firefox, Chrome, IE, and Safari (all on Windows).

This is skeleton HTML for what we've seen from several of our clients. The empty <link /> tag is the problem - everything is fine if you remove that. I know that shouldn't be there but we have clients who are getting it by copying and pasting content from web pages that already have it in them. One source of this content was Up!CMS. Browsers correctly handle the empty link tag, but CKEditor goes a bit nuts with it.

#8191 No API to get all selected values of Select UIElement (multiple select list) confirmed New Feature Normal
Description

I have a custom dialog where I have select UI element with attribute multiple set to 'multiple'. Now there is no way (or any documentation) to retrieve all (multiple) selected values of this 'Select' element. Please let me know how to retrieve the multiple selected values of 'Select'.

For example :

type:'select', id:'selected_attr', label:'Attribute', multiple:'multiple', style:'width:220px', items:loadAttributes()

var selectObj = this.getContentElement('info','selected_attr');

selectObj.getValue() is returning me always the first selected item, but not all selected values.

#8198 custom smileys in config.js causing errors? confirmed Bug Normal
Description

I added the following to my config.js file:

config.smiley_path='/images/emoticons/';

config.smiley_images=['smiley.gif','teeth.gif','greed.gif','laugh.gif','wink.gif'];

config.smiley_descriptions=[':)',':D','$$-)',':lol:',';)'];

Everything shows up correctly in the Insert a Smiley dialog box, and when I click one the image is inserted, but if I click to view "Source" or try to submit the form I get the following error:

TypeError: Result of expression 'C' [undefined] is not an object.

I've tried it on Safari and Firefox using the nightly build, and it does the same thing.

#8201 Deleting first character of misspelled word deletes entire word (in Chrome) confirmed Bug Normal
Description

The summary says it all. Position the cursor on the first letter of a misspelled word (with spell-checking turned on), hit delete, and the entire word gets deleted.

This behavior occurs in Chrome (version 12.0.742.122). IE 9, Firefox, and Safari.

#8205 IE: using Undo after Unlink moving cursor to start of document in editor confirmed Bug Normal
Description

To reproduce the defect:

  1. Type some paragraphs of text and insert a link using link dialog.
  1. Keep cursor inside the link and click on Unlink icon or open context menu menu and click on Unlink option.
  1. Link inserted in step 1 is removed and cursor stays at the same paragraph where we have the link before.
  1. Press Undo icon in the Tool bar or use Ctrl + Z

Expected Result: Link that was removed comes back and cursor stays inside the link.

Actual Result: Link that was removed comes back but cursor moves to start of document in editor body.

This will be huge inconvenience to the user if document has large number of paragraphs.

#8206 Firefox: unable to access caption with arrow keys confirmed Bug Normal
Description
  1. Paste in the following code:
    <p>
    	This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p>
    <table border="1" cellpadding="1" cellspacing="1" style="width: 500px;">
    	<caption>
    		this is table</caption>
    	<tbody>
    		<tr>
    			<td>
    				&nbsp;</td>
    			<td>
    				&nbsp;</td>
    		</tr>
    		<tr>
    			<td>
    				&nbsp;</td>
    			<td>
    				&nbsp;</td>
    		</tr>
    		<tr>
    			<td>
    				&nbsp;</td>
    			<td>
    				&nbsp;</td>
    		</tr>
    	</tbody>
    </table>
    <p>
    	This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p>
    
  2. Place the cursor inside the table and try to move it with arrows to reach the caption.

Result: It is impossible to reach the caption with arrow keys but t is possible using mouse.

#8207 IE8 IE9: empty paragraphs inserted when aligning text confirmed Bug Normal
Description
  1. Open replacebycode sample and clean editor contents
  2. Type 'wwwwwwwwwwwwwwwwwww' or similar
  3. Select whole text with a mouse
  4. Set "heading 2" and font-size 14 using toolbar buttons
  5. Press CRTL+C
  6. The text should still selected so press right arrow to go to the end of text
  7. Press Enter
  8. Press CRTL+V few times (6-7 will do) or CRTL+V and Enter if cursor doesn't move to new line automatically after paste.
  9. Select whole text with CRTL+A
  10. Now toggle with "Align Right" and "Align Left"

Result: Empty paragraphs are inserted between lines of text.

Issue is reproducible in IE8 and IE9 from CKE 3.0

#8209 [Firefox5] : Unable to write in the same line ,After using display none/block on editor. confirmed Bug Normal
Description
  1. Place 1111.html file in samples folder.
  2. Open file in a browser
  3. Click inside editor and start typing (type two words, you have got 5 seconds:))
  4. After editor reappears, cursor appears at the beginning of typed text but If start typing without changing cursor location old text jumps one line down, so that you have two lines of text in two paragraphs.

This issue has been reproducible in Firefox5 from CKE 3.3.1

#8213 [Webkit]: Inline styles are not copied with text confirmed Bug Normal
Description
  1. Open ajax sample and paste the following code:
    <p>
    	This is some sample text. You are using CKEditor.</p>
    <p>
    	This is some sample text. You are using CKEditor.</p>
    
  2. Select whole first line and apply (using Toolbar buttons): green "Text Color", yellow "Background Color", Comic Sans MS "Font Name" and Big from "Fromatting Styles"
  3. Select part of text from first line and copy it using CRTL+V
  4. Place the cursor inside a second line or in new third line and paste the text using CRTL+V

Result: Only text gets copied (without styles).

Issue has been reproducible from CKE 3.1 in Webkit browsers.

#8218 Preselect color dialog to the current color (or bg color) of the selected text. confirmed New Feature Normal
Description

When opening the color dialog, highlight (with a border?) the color of the currently selected text, if it's in the default palette. In the "More Colors" dialog, default the input box to the hex code of the active color (or bg color). If multiple colors are present in the selected text, use the first one encountered?

Sorry if this is a duplicate request, but I didn't find it in my ticket searches.

#8230 Problem with Google minify confirmed Bug Normal
Description

_source/plugins/listblock/plugin.js line 102

' aria-posinset="' + ++this._.size + '">',

When this line is compressed by Google's ModPageSpeed minify script, the result is:

' aria-posinset="'+++this._.size+'">',

While this is an issue with the Google tool, it is widespread and can easily be avoided if the code is changed to:

' aria-posinset="' + (++this._.size) + '">',

Please consider this suggestion.

#8233 Can't modify disabled input field confirmed Bug Normal
Description

Issue has been reproducible in Firefox and Opera 11.50 from CKEditor 3.0.

Open replace by code sample and paste the following code:

<input class="text" disabled="disabled" maxlength="220" name="abc"
type="text" />

Try to open textfield properties dialog.

In Firefox browsers it is impossible neither with right-click menu nor with double-click.

In Opera only right-click menu works.

#8237 CK Editor doesn't support translation of keystroke names confirmed Bug Normal
Description

To reproduce the defect:

Open Language sample and change language to Arabic or Hebrew.

Open Accessibility Instructions dialog by pressing Alt + 0.

Look for the Toolbar Collapse command it will still show ALT+SUBTRACT

#8243 CKEDITOR assumes basepath will include protocol confirmed Bug Normal
Description

As far as client side resources are concerned, a Django 1.3 project can describe two important context variables :

  1. STATIC_URL : This is where we access all files that aren't generated by server side logic and are required by the interface clientside logic or appearance.
  1. MEDIA_URL This is where all resources for client side usage that were uploaded by users is accessed.

keeping site theme files separate from user uploads means we can host them from different domains (usually subdomains of the root)

something.org static.something.org files.something.org

So now onto the problem I'm having with CKEditor :

I define my STATIC_URL and MEDIA_URL like so :

something.org files.something.org static.something.org

What this does for me is reduce the amount of HTTPS <> HTTP wrangling behind the scenes.

However, CKeditor fails to load for me becuase you're codebase assumes the BASE_PATH for ckeditor will explicitly be prefixed by a protocol. Sure i can change the STATIC_URL and MEDIA_URL to :

http://something.org http://files.something.org http://static.something.org

but now keeping the site secure and preventing session cookie bleed-over is a great deal more difficult.

tl;dr : Don't make assumptions about the URL from which you load ckeditor.


Please see comment:5 for short description of problem that user is getting in editor.

#8252 Inner duplicated style is not being removed confirmed Bug Normal
Description

Using CKEDITOR.style.applyToRange to re-apply styles is not cleaning up inner duplicated styles.

For example, when applying the <b> style on the following selection:

<b>this [is</b> some] sample text

Results on this:

<b>this <b>is</b> some</b> sample text

While the expected is this:

<b>this is some</b> sample text

I'll add a TC for this.

#8257 Adding support for css-classes in tableCell dialog confirmed New Feature Normal
Description

This patch adds support for css-classes for ckeditor 3.6.1 and 3.6.2

I attached a patch and the whole file.

#8267 protectedSource is removed when it is the only source confirmed Bug Normal
Description

If a tag matches an item in the protectedSource regular expression and it is the only content, then it is removed when switching to WYSIWYG mode and back to Source mode.

Steps to reproduce:

  1. Create a CKEditor using the following configuration:
    var config = {
                    protectedSource: [/<photo[0-9]+>/gi],
                    startupMode: 'source'
                };
    
  2. Enter the text <photo1> into CKEditor.
  3. Click the "Source" button to switch to WYSIWYG mode and click "Source" again to switch back to source mode

Expected Result:

  1. CKEditor contains the content <photo1>

Actual Result:

  1. CKEditor content is empty
#8271 CKEditor toolbar becomes invisible when using Tab key and Maximize toolbar button confirmed Bug Normal
Description

CKEditor toolbar becomes invisible when using Tab key and the Maximize toolbar button. Please follow the steps in the attached filed to reproduce the issue. This bug also happen in the CKEditor demo site of 3.6.1 version and nightly build.

#8273 Pasting into empty bullet doesn't behave as expected - FF/IE9 confirmed Bug Normal
Description

Steps to reproduce

  1. Goto ckeditor.com/demo
  2. Create three lines with the word, 'Item'
  3. Select the lines and turn them in to an unordered list
  4. Move to the first item, and press enter to create a new empty item.
  5. Left click to place your cursor in the empty bullet.
  6. Right click on the empty bullet and paste.

What's expected? The text is pasted in to the empty bullet

What happens?

In FF4/5 The bullet gets deleted and a new paragraph is created with the text.

In IE9 The text is pasted at the end of the content.

#8278 Opera: In Table dialog values for rows & columns not shown in Rows & Columns fields confirmed Bug Normal
Description

To reproduce the defect:

  1. Open any CK Editor sample and insert a table with default values(3 rows & 2 columns)
  1. Open Context menu inside a table cell and bring up the Table dialog.

Expected Result: Table dialog comes up and it shows value 3 for Rows & 2 for Columns

Actual Result: Table dialog comes up and it's not showing any values and Rows & Columns fields are completely disabled.

#8279 Allow for CKFinder skin customization. confirmed New Feature Normal
Description

Currently when user wants to add new custom skin to CKFinder not only he has to create skin.js and CSS files but also add some code in ckfinder.js file - a.skins.add('myskin', (function () {... })());.
The same thing happens when user copies one of default skins folder, renames it and makes appropriate changes. Such new skin will not be visible for CKFinder if user doesn’t add this skin to the minimized ckfinder.js.

Would be nice if this code from ckfinder.js could be moved to skin.js and the only change user should do, would be change in config.js file.

This issue was reported by user Kevinelsh on our support channel – “Support question: Customizing CKFinder Skin”.

#8280 big amount of invalid content slows down SCAYT (chrome) confirmed Bug Normal
Description

With the SCAYT spellchecker enabled in documents with lots of incorrect words slows down the ckeditor, namely with adding newlines. This can cause a long browser freeze when forwarding/replying e-mails with 'invalid' content (different language, error logs, etc), where you still want the spellchecker enabled for componsing and checking your own content.

To reproduce:

  • place some lines of incorrect words, f.e.:

sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdfsdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdfsdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf

  • add some newlines by pressing ENTER 5 times followed by some characters. Repeat this step shortly after doing this for a greater effect.

It takes a couple of seconds to process it, in the mean time window freezes and you can't do anything.

It seems to occur mainly in chrome. In FF en IE9 the problem is present, but less dramatic.

Tested on an Intel Core i 3.4GHz, Windows 7

#8281 Internet Explorer 7.x crashes when changing an item from a bulleted list into numbered list confirmed Bug Normal
Description

Steps to recreate:

  • Make a numbered list
  • highlight one or several lines within the numbered list (make sure that the first or last line of the list is not highlighted)
  • try to change these lines from nubered list to 'bulleted' list
  • Internet Explorer will crash

(works vice versa too)

This issue only occurs until IE7.x it does not occur with other browsers or IE version higer than 8.0 For our company it is vital to use CKEdit with IE7.x as our clinical information system is not validated for IE versions higher than IE7.x

#8288 Internet Explorer will not run blank javascript function as per documentation confirmed Bug Normal
Description

As per: http://docs.cksource.com/CKEditor_3.x/Developers_Guide/File_Browser_%28Uploader%29/Custom_File_Browser#Example_4

Example 4 works fine in all browsers I have tested except IE. Both IE 8 and 9 will not run the additional javascript called, returning only the URL of the image.

#8303 IE8: can't delete whole text before an anchor. confirmed Bug Normal
Description
  1. Open replacebycode sample
  2. Insert anchor "This is some sample text. Yo^u are using CKEditor." inside "You" word
  3. Move the cursor to the beginning of line
  4. Start deleting text with DELETE

Result:
When you reach "o" in "You" word and press DELETE "o" will be deleted with anchor.

Reproducible from CKE 3.6 rev [6904] in IE8

#8304 Make ENTER split blockquote when enterMode=BR confirmed New Feature Normal
Description

This is a followup for #7354.

It should be possible to exit from blockquotes with the ENTER key when enterMode=BR.

#8306 FF : Custom attributes on links dropped during copy/paste confirmed Bug Normal
Description

Custom attributes on anchor tags are being dropped during copy/paste (Ctrl+C/Ctrl+V).

Steps to reproduce:

  1. In Source mode, modify a standard link by adding a custom attribute (e.g. <a href="/index.htm" customAttribute="1">test</a>.)
  2. Switch out of source mode.
  3. Copy (Ctrl+C) the linked text.
  4. Paste (Ctrl+V) on a new line.
  5. Switch back to Source mode, and see that customAttribute="1" was not pasted.

Occurs on the demo page with the following environments:

  • Browser: FF6 OS: Windows Vista, Windows 7
  • Browser: FF5 OS: Mac
  • Browser: FF3 OS: Windows Vista
#8307 [iOS] Maximize is broken confirmed Bug Nice to have (we want to work on it)
Description

When Maximizing, the editor toolbar go out of the viewport boundaries, making it impossible to use the editor and restore the size to use the page.

#8308 [iOS] There is no scrollbar on toolbar combos confirmed Bug Normal
Description

It's not possible to scroll to toolbar combos contents to reach the hidden options at the bottom of the list.

#8309 [iOS] Selection marker and ballon remain over toolbar panels confirmed Bug Normal
Description

When you select a word close to the toolbar combos, the iOS selection markers and copy/paste balloon remain over the combo panel.

See screenshot.

#8310 [iOS] It's not (always) possible to close toolbar combos without selecting one item confirmed Bug Normal
Description

When a toolbar combo is opened, one would expect to close it by tapping once anywhere in the editor out of it. Instead not happens. (It eventually closes)

Other than that, if you tap the combo again, the combo reopens instead of closing. The correct behavior here could be a workaround for the previous problem.

#8311 [iOS] There is no way to open the context menu confirmed Bug Normal
Description

There is no way to open the editor context menu on iOS.

#8312 [iOS] SCAYT blocks typing confirmed Bug Normal
Description

When SCAYT is enabled, it's not any more possible to type in the editor on iOS.

#8313 [iOS] Dialogs in the wrong are not draggable confirmed Bug Normal
Description

It's not possible to drag the dialogs by tapping and dragging on iOS.

#8314 [iOS] Dialog fields don't get focus when opened confirmed Bug Normal
Description

On iOS, the first dialog field is not getting typing focus once the dialog gets opened.

#8315 [iOS] Editing area grows with no scrollbar confirmed Bug Normal
Description

On iOS, the editing area grows with the contents instead of presenting a scroolbar.

#8316 [iOS] Resizer is not draggable confirmed Bug Normal
Description

On iOS, the editor resizer is not draggable becoming useless.

#8317 [iOS] Show "tooltips" for toolbar commands confirmed New Feature Normal
Description

On iOS, a nice balloon appears when tap and holding the finger on toolbar items. See attachment.

Currently it shows the "JavaScript" text. Ideally, the button tooltip could be there, to help the user understand the command usage.

#8318 [iOS] Copy/Paste balloon hide toolbar options confirmed Bug Normal
Description

On iOS, when selecting text close to the toolbar, the system Copy/Paste balloon appears and covers toolbar items that can't be used.

Ideally, there should be a way to close it, because it is still useful.

See screenshot.

#8319 [iOS][Android] The divreplace sample doesn't work confirmed Bug Normal
Description

On iOS, nothing happens when tapping on the divs on the divreplace sample.

#8320 [iOS] The tableresize plugin is not usable confirmed Bug Normal
Description

On iOS, the tableresize plugin is not usable as it's not possible to drag the resize handles.

#8322 [IE] Performance problems with nested documents confirmed Bug Normal
Description

This problem was raised by a customer using Outlook to copy and paste content into CKEditor.

When the content is pasted (or set using the source edit mode),

we are getting a stack over flow error in IE6.

IE7,IE8 Browser stopped responding when we paste the data or set the data in source and navigate to rich text view.

This issue should be fixed in ticket #8246 which was closed so we are logging this new ticket to track the issue

#8323 FF 4: In HC mode, No Visual Focus when we tab to Check boxes & Combo boxes on all the dialogs confirmed Bug Normal
Description

To reproduce the defect:

  1. In High contrast mode, open any CK Editor sample and click on Flash icon in the Tool bar to activate Flash Properties dialog.
  1. When Flash dialog is opened tab through each element to see if the focus is shown properly for all the elements when we are tabbing through them

Focus not shown when we tab through Check boxes and combo boxes on Properties tab of Flash Properties dialog.

Same issue happens with check boxes and combo boxes on all dialogs ( For ex: Find,Link, Table, Image, IFrame)

This issue should be fixed in ticket #6200 which was closed so we are logging this new ticket to track the issue

#8325 Error Message not displayed when we enter invalid CSS in Styles field confirmed Bug Normal
Description

On all dialogs that provide an advanced tab, the user can specify CSS styling through the Styles field. However this field is not validated when user enters inValid CSS & clicks OK. Therefore they can enter fake values and it looks to the user that they are accepted.

To reproduce:

  1. Open the Table dialog.
  2. On the advanced tab, if the user enters a name value pair that is not valid css (e.g. myFakeAttribute: 200px)
  3. Click OK.

Expected Result: An error warning should occur indicating that the user has entered inCalid css

Problem: There is no error warning that the value entered is inValid CSS. However when the dialog is opened again, Styles field is now empty. The user has not been told that their content is invalid so they have no idea why their content has been removed. This would also occur if the user accidentally mis-spelled a CSS attribute name e.g. widtth: 100px. This is not reported as invalid, but it is removed from the Styles field on the dialog.

Is there anyway to use the same validation that removes these entries from the Styles field, to also alert the user to invalid content when they click OK on the dialog? Do you know at what point the invalid entries get removed from the Styles field? Is this something CKEditor has control over or is it due to the browser?

This issue originally reported in ticket #8124 which is fixed in 3.6.2 but the issues mentioned in ticket #8124 still exists so we are logging this new ticket to track the issue

#8331 Ability to ignore "Confirm Cancel"-warning on dialogs confirmed New Feature Normal
Description

If changes have been made to a dialog and the cancel button is pressed an annoying "Confirm Cancel" warning is displayed. It would be nice to toggle weather you want this warning or not.

The new "on cancel event" on the dialog will look like:

this.on( 'cancel', function( evt ) {
  if (!editor.config.ignoreConfirmCancel)
    iterContents( function( item ) {
      if ( item.isChanged() ) {
        if ( !confirm( editor.lang.common.confirmCancel ) )
          evt.data.hide = false;
        return true;
      }
    });
}, this, null, 0 );

The only line added is:

if (!editor.config.ignoreConfirmCancel)

which is in line 323 of the plugin.js in the dialog folder. This is just before the iterContents( function( item )... is called - thus ignoring this check if the ignoreConfirmCancel is set in the editors config.

In order to toggle the warning add the following line to the editors config:

config.ignoreConfirmCancel = true;
#8332 Chrome : link not inserted in correct position when we make a selection for the first time. confirmed Bug Normal
Description

To reproduce the defect:

  1. Open Ajax sample, click on bold icon, type some text( for ex: frederico knabben ck editor)
  1. select knab in the word knabben and click on Link icon
  1. Enter URL in the link dialog and click OK button.

Expected Result: Link inserted with a name knab for the letters in the word knabben

Actual Result: Link inserted at the beginning of paragraph

Only happens when we open the sample,make a selection for the first time, selection should be part of a word and text in paragraph has some styling applied(for ex; bold,italic,font name or font size)

#8334 Strange behaviour, missing line confirmed Bug Normal
Description

when i do the following stpes, one of lines will be missed.

  1. type: 11111111
  2. press shift+enter
  3. press shift+enter
  4. press enter
  5. type: 222222222
  6. copy all content
  7. paste

there are 2 lines instead of 3. . one of the line missed. . .

i am want to know what kind of logic do ckeditor deal with <br> and <p> so that i can do some work around.

#8335 javascript error regularly in this situation confirmed Bug Normal
Description

reproduce as below:

  1. type three lines
  2. first line bold,
  3. second line italic,
  4. third line underline,
  5. copy all of them, paste at the end of third line,
  6. after several pasted, unexpected empty paragraph appeared.
  7. type something in this empty paragraph,
  8. after typed, try to bold, italic or underline,
  9. it doesn't work and after several pressing or hotkey about bold, italic and underline.
  10. javascript error shows "null" is null or not an object, line 116, char: 2337.

IE8, Windows XP sp3 Ckeditor3.6.1, javascript

#8338 Opera: link not inserted in correct position when we have image before cursor position (CORE-14592) confirmed Bug Normal
Description

To reproduce the defect:

  1. Open any CK Editor sample, type some text, insert a smiley or image and click on Link icon in the tool bar to open Link dialog.
  1. Enter the URL for the link and click OK button.

Expected Result: Link inserted after the smiley/Image

Actual Result: Link not inserted before the smiley/Image

#8346 Focus after close dropdown confirmed Bug Normal
Description
  1. Put focus into editor;
  2. Open the "Styles" combo;
  3. Without closing it, open the "Format" combo.
  4. Press "Esc" to close the panel.
  • Actual Result: Focus goes nowhere.
  • Expected: Focus returns to editor document.
#8351 Image not visible in page preview confirmed Bug Normal
Description

This issue was reported by Srinivas Nalla on our support channel.

TC provided by a user:

Steps to Re-Produce the Issue.

  1. Place an Image Tag with wrong image name
  2. Find that image missing icon is displayed in IE 8 but missing in Firefox

I have got similar but not the same result. Image missing icon was visible in CKEditor content area but not in Page preview.

At first I thought that this is a browser issue but it is reproducible from CKEditor 3.6 so it looks like an editor problem.

#8355 ASP.Net WebPages (Razor) Helper confirmed New Feature Normal
Description

I've used CKEditor for various projects and was thinking it would be nice to have a "Helper" for ASP.Net WebPages (Razor).

Here's an article I found where CKEditor was implemented for MVC3.

It would be preferable to make it a general helper for ASP.Net WebPages rather than aimed specifically at MVC3.

Regards,

Micah

#8358 Safari & Chrome : Paste options are enabled & Paste option shown in context menu when Clipboard is empty confirmed Bug Normal
Description

To reproduce the defect:

Clear your clipboard, Open any CK Editor sample, keep cursor in editor body.

Expected Result: All the Paste(Paste,Paste as plain text,Paste from Word) toolbar icons should be disabled and also when we invoke context menu there should not be any options in context menu.

Actul Result: All the Paste(Paste,Paste as plain text,Paste from Word) toolbar icons are enabled & also when we invoke context menu paste option is shown in context menu.

#8360 UI color picker - units are placed on dialog border or labels overlap text fields confirmed Bug Normal
Description

IE7

TC

Result

Under ie7, units from second column are placed on border of dialog window

#8361 [Opera] Wrong cursor position occurs after editing link confirmed Bug Normal
Description
  1. Insert link with some length of URL at the middle of text;
  • Expected: Newly inserted Link is fully selected
  1. With the link selected, open Link dialog again;
  2. Without changing anything click "ok" button;
  • Actual: Cursor is now moved to the end of link.
#8362 Bullet list, options dialog, wrong size of content in V2 & Office skins confirmed Bug Normal
Description

IE7

TC

  • Open Skins sample
  • Go to v2 or office skin
  • select default text and click bullet list
  • Press right mouse button on newly created list and select list properties from menu

Result

Properties window is opened, on the right side of window, there is an empty, transparent place between resizable content and window frame.

#8363 Selected Style and Font not visible in V2 and office skin confirmed Bug Normal
Description

IE6,7,8

TC

  • open Skins sample
  • go to v2 or office skin
  • without setting focus in edit area, select style from dropdown, select font from dropdown

Expected

Selected style and font, now are visible in toolbar boxes

Actual

Selection only blinks and dropbox stays clear

When You type something and then select font/style, then selection is visible.

#8365 List item breakage in IE8 confirmed Bug Normal
Description

Test environment, IE8 - Windows Vista (Problem does not occur on Windows 7)

After moving an existing list item down, and deleting that move, the list item does not correctly return to it's original position.

Steps to reproduce:

  1. Access ckeditor.com/demo
  2. Create three paragraphs, and turn them in to list items.
    • Item 1
    • Item 2
    • Item 3
  3. Place your cursor before Item 2, and press the enter key. This will create an empty item between Item 1 and Item 2. You should have four total items, with one empty one.
    • Item 1

    • Item 2
    • Item 3
  4. Again place your cursor before Item 2, and press the backspace key 2 times. The bullet for Item 2 is removed, and Item 2 is placed below the empty item.
    • Item 1

    • Item 2
    • Item 3

It seems that this process will orphan the Item 2 text outside of an LI tag. If you look at the editor source, you will see...

<ul>

<li>

Item 1</li>

<li>

&nbsp;</li>

Item 2 <li>

Item 3</li>

</ul>

Ideally this will behave as it does on Windows 7 IE 8. In that environment Item 2 will merge back in to the empty item.

#8367 Allow for adding tfoot tag from table dialog confirmed New Feature Normal
Description

Currently the only way to add <tfoot> tag is by editing source code.

It would be nice to have possibility to add it table properties dialog.

#8375 onfocus: Input text selection not cleared in Chrome confirmed Bug Normal
Description

This problem only happens on Google Chrome.

I have a ckeditor on a page that also contains one or more input text fields. If I type something and select/highlight the words in one of the input text field, then click inside the ckeditor, you will notice the selection/highlight of the input text field is not cleared.

You can reproduce this behavior by going to ckeditor demo page (http://ckeditor.com/demo) using Google Chrome browser, type and select "ABC" in the "Search..." box, then click inside the ckeditor so it has the focus. You will see that "ABC" is still selected/highlighted.

#8378 Support for optgroup confirmed New Feature Normal
Description

For a better overview I want to have the optgroup element for select in one of my plugins.

#8382 [IE] PageUp and PageDown not working confirmed Bug Normal
Description

To reproduce the defect:

  1. Enter content in CK Editor that spans multiple pages.
  1. Press PageUp button.

Expected Result: Cursor in editor body moves one page up.

Actual Result: Cursor goes to start of page content.

  1. Press PageDown button.

Expected Result: Cursor in editor body moves one page down.

Actual Result: Cursor goes to end of page content.

Tested against IE8, IE9 & IE10

#8385 Problem when switching between multiple instances of ckeditor confirmed Bug Normal
Description

Script error is displayed when switching between multiple instances of ckeditor in IE7.

Steps to reproduce: 1.create multiple ck-editor instances 2.click on the other ckeditor instances other than the current one in focus.

Expected Result: Editor should be displayed Actual Result: Script error is displayed

"C.getSelection() is null or not an object"

#8386 IE: When copying and pasting a table, an empty <p> is appended on output confirmed Bug Normal
Description

Steps to reproduce:

  1. Open CKEDITOR.
  2. Create a table.
  3. Highlight the table with "Select All" button and click "Copy" icon.
  4. Click "New Page" icon.
  5. Click "Paste" icon.
  6. Click "Source" -> HTML source is displayed, there is "<p> &nbsp;</p>".
  7. Click "Source" -> HTML page is displayed, line break is inserted before the table.

Bug is present since 3.4.2 i believe.

#8388 CTRL-V Paste with Opera going to top of editor confirmed Bug Normal
Description

Seems that this bug is so obvious that it should already be reported but I did not find anything with "opera" and "paste".

Tested at: http://nightly.ckeditor.com/7282/_samples/enterkey.html

First, copy some text so that when you use CTRL+V, you can paste it. I used "text" to paste with CTRL+V. Using ENTER_P mode, enter the following text using Shift+enter or using ENTER_BR mode (what we use).

a
b
c

Place you cursor after the "c", press CTRL+V. Note that it works properly.

a
b
ctext

Now move the cursor to after "b" and press CTRL+V. Note that the text gets pasted at the top of the editor.

Get:

texta
b
ctext

Should be:

a
btext
ctext

Same thing happens if you move the cursor to after the "a".

#8398 customConfig applied to second instance of CKEditor may apply to both or only one editor. confirmed Bug Normal
Description

This issue was reported on our support channel (Multiple instances configuration problem).

Custom cofnig file.

CKEDITOR.editorConfig = function( config )
{ 
 config.skin = 'office2003'; 
 config.startupMode = 'source'; 
};

Settings on HTML page:

OK:

CKEDITOR.replace( 'editor1' ,  {customConfig : 'myconfig.js' });
CKEDITOR.replace( 'editor2');

This applies only to the first editor.

PROBLEM:

CKEDITOR.replace( 'editor1' );
CKEDITOR.replace( 'editor2',  {customConfig : 'myconfig.js' } ); 

This applies either to one or both editors

To reproduce:

  1. Modify replacebycode sample page and JS file
  2. Clear browsers cache
  3. Load replacebycode page

In Firefox. At start only second instance gets updated but if you press CRTL+F5 couple of times quickly options will be applied to both editors

In IE. Simple CRTL+F5 will do. You will get toggling effect. One CRTL+F5 updates both editors and the other only one.

In Webkit and Opera both editors are updated most of the time. Only once I have managed to get state where only one editor was changed – it took a lot of CRTL+F5 of F5 to get it.

Issue has been reproducible from CKEditor 3.1 as I didn’t manage to get customConfig to apply any changes in earlier versions.

#8402 SSI-style HTML comments inside href attributes are broken when Source button is clicked confirmed Bug Normal
Description

SSI-style HTML comments such as <!--#echo var='DOCUMENT_NAME' --> become broken when the Source button is clicked.

Example:

Using the CKEditor demo site, click the Source button and add that comment to the first link:

<a href="http://en.wikipedia.org/wiki/Fairy_tale/<!--#echo var='DOCUMENT_NAME' -->" title="Fairy tale">fairy tale</a>

Then click Source to view the content in the normal editor mode. When you click Source again, the link becomes this:

<a href="http://en.wikipedia.org/wiki/Fairy_tale/{C}<!--#echo var='DOCUMENT_NAME' -->" title="Fairy tale">fairy tale</a>

Note the {C} that has been added. In fact, every time the source is viewed, another {C} is added:

<a href="http://en.wikipedia.org/wiki/Fairy_tale/{C}{C}<!--#echo var='DOCUMENT_NAME' -->" title="Fairy tale">fairy tale</a>
<a href="http://en.wikipedia.org/wiki/Fairy_tale/{C}{C}{C}<!--#echo var='DOCUMENT_NAME' -->" title="Fairy tale">fairy tale</a>

and so on.

#8406 StyleSheetParser and Fullpage confirmed New Feature Normal
Description

Currently if FullPage=true then no style sheets are loaded via ContentsCss and hence the styles drop down isn't populated with the styles available for the page.

Ideally the stylesheetparser should load all the external styles sheets referenced in the html if fullpage=true

#8411 Losing formatting on backspace confirmed Bug Normal
Description

No special setup, can be seen on sample files that come with the download.

  • Open one of the demos
  • Delete the default demo text
  • Type any text
  • Hit Return a few times to allow some space
  • Type some more text and give it formatting "Heading X"
  • Go to the beginning of the line
  • Hit backspace
  • The line with "Heading X" format is back to normal
#8412 Opera: insertElement() not working as expected for inline elements confirmed Bug Normal
Description

When inserting multiple elements into the editor in Opera, the elements are sometimes added in the incorrect order. This only seems to occur when one of the elements being added is an inline element.

To reproduce:

  1. Save the attached file into the _samples directory and open it in Opera.
  2. Click the 'Insert Elements' button. This should add an empty image to the editor, followed by a paragraph of text.

Problem: The Paragraph of text is sometimes added to the editor before the image.

This problem only occurs when inserting elements into an empty editor and it occurs roughly every 2nd time.

The attached sample uses the following code:

temp.setHtml('<img src=""/><p>Text goes here</p>');

However if the img tag is replaced by other inline elements like <span> or <a>, the problem also occurs. We cannot reproduce the issue when using block level elements like <p> or <div> instead of the <img> tag though.

#8416 IE: toolbar buttons don't respect cursor location. confirmed Bug Normal
Description

This bug is related to #7796 where @fredck mentioned how browser sees element boundaries comment:4 and that current cursor location should be reflected by what the user sees on a toolbar comment:8.

To reproduce:

  1. Switch to source and paste in the following code
    <center>
    	<p>
    		<b>HELLO World</b><br />
    		<br />
    		&nbsp;</p>
    </center>
    
  2. Switch to source
  3. Click to the right of the "Hello World" but on the same height of this line - so that the cursor appear right after "Hello World"
  4. See that in IE8 and IE9 toolbar button "Bold" is IN MOST CASES not turned on
  5. Start typing or paste some text using CRTL+V or paste button (right-click to activate context menu turns on the bold button so pasting from context menu works)

Result: text is written/pasted in bold.

Issue has been reproducible from CKEditor 3.0 in IE8 and IE9.

#8418 do feature detection of paste event support before simulating a paste event confirmed Bug Normal
Description

I think this code might end up confusing you when Opera one day supports 'paste' events:

http://dev.ckeditor.com/browser/CKEditor/trunk/_source/plugins/clipboard/plugin.js#L141

I suggest adding some additional feature detection - perhaps

if ( CKEDITOR.env.opera && ! ('ClipboardEvent' in window) )

or something like that.. There is no rush, paste event is high priority but probably won't happen for Opera 12 unfortunately.

#8425 IE8 IE9: Selection Defect with contentEditable = "false" and unselectable = "on" confirmed Bug Normal
Description

This issue was reported on our support channel (Topic: selection defect)

  1. Download and copy defect.html to samples folder
  2. Open editor and select "[This is div one and it simulates]"
  3. Right-click outside selection but in the same line E.g. area wher^e
  4. Repeat step three. this time click in are^a where

Result:
IN IE8 selection stays.
In IE9 selection shows for a moment on right-click and than disappears. To be more specific selection stays but the blue background disappears (what proves step 5).

  1. Additionally in IE9. Left-click out side of editor. Text will look like it is unselected. Now move the cursor on the part of text that "was selected", grab it with left-click and try to move it in the same line.

Result: It is possible to move the text because it's selection had stayed.

Issue has been reproducible in IE8 and IE9 from CKEditor 3.2.1

#8426 Strings for specialchar plugin added directly to editor.lang instead of editor.lang.specialChar confirmed Bug Normal
Description

The strings for the special characters dialog are available directly on the editor.lang object when the editor is loaded in a new language. They should be inside the editor.lang.specialChar object.

To Reproduce:

  1. Add the attached fr.js (pseudo translation file) to the specialchar/lang directory and change the value of availableLangs in specialchar\plugin.js to:
availableLangs : { en:1, fr:1 },
  1. Open ui_languages.html in a browser.
  2. Click into the editor and open the special characters dialog. Close the dialog.
  3. Inspect the editor.lang object in the DOM. editor.lang.specialChar will contain all the strings for the specialchar plugin.
  4. Now change the language to French and inspect the editor.lang object in the DOM again.

Problem: All the strings for the specialchars plugin are now available directly on the editor.lang object. Note that these are the strings in English. When the special characters dialog is opened again, the editor.lang.specialChar object is correctly updated with the pseudo French strings.

specialchar\plugin.js does extend the editor.lang.specialChar object with the string values.

CKEDITOR.tools.extend( editor.lang.specialChar, plugin.langEntries[ langCode ] );

However the CKEDITOR.plugins.load function in core\editor.js always extends the editor.lang object.

CKEDITOR.tools.extend( editor.lang, plugin.langEntries[ lang ] );

This works correctly for the a11yhelp plugin because the strings in a11yhelp\lang\xx.js are specified within the accessibilityHelp group. Perhaps the special characters lang files also need to group the strings like this?

#8428 Copyright header missing from specialchar\lang\en.js confirmed Bug Normal
Description

The specialchar\lang\en.js file does not contain any copyright information in the 3.6.2 release.

#8441 Selection not updating when moving from left -> right confirmed Bug Normal
Description

The editor.on( 'selectionChange' ) is not called when text is selected with the mouse moving from left to right when using Chrome v14.0.

This can be veryfied in the nightly build: http://nightly.ckeditor.com/7293/_samples/replacebyclass.html

In order to replicate the bug place the cursor in between the bold text "sample text" and the link "CKEditor". Now drag the selection towards the left. Notice how the enabling of the bold action-button in the toolbar shifts to TRISTATE_ON and then to TRISTATE_OFF when past the bold text.

If the same is done from left to right (starting with the cursor to the left of the bold text and then dragging the selection towards the right then the bold action-button is not affected?!?

#8445 dialog.getSelectedElement() returns wrong element when element selected is within a table for 3.6.2, Firefox confirmed Bug Normal
Description

Observable for instance for a single image inside a table cell. The bug seems to be caused by the selected element being set to be the containing table element even though for instance the double-click event does get the correct element passed as its .data.element.

For a document containing something like (only):

<table>
	<tbody>
		<tr>
			<td>
				<img alt="Silva.jpg" src="/images/Silva.jpg" style="width: 100px; height: 133px;" /></td>
		</tr>
	</tbody>
</table>

reproduce the bug by double-clicking on the image. The image dialog opens, but is not initialized with the image data.

In general,

  1. right-clicking the image will not show the image context-menu;
  2. double-clicking the image will open the image dialog, but will not initialize the dialog correctly;
  3. clicking the image toolbar icon with the image selected will open the image dialog but uninitialized.
  4. Please also note that when you click on image - the elements path shows only body table. If you will try to click on border you will get body table tbody tr td. It is not possible to get img element there.
#8446 IE8 - Unable to place cursor after image confirmed Bug Normal
Description

Go to CKE demo. Ctrl-A/Ctrl-X Insert an image. Click on the image. Now attempt to place the cursor after the image to the right or bottom. You are unable to, and at this point, one cannot add anything after the image.

The same thing happens for iframes which uses image fake element.

#8448 CSS errors in FF 7.01 using CKEditor 3.6.2 confirmed Bug Normal
Description

There are som CSS problems when using CKEditor with FireFox 7.01. I use CKEditor 3.6.2. I don't have an english version of FF - so my FF errors are in Danish:

[12:03:41.373] Forventede farve, men fandt 'auto'.  Forventede farve, men fandt '-webkit-focus-ring-color'.  Forventede 'end of value' men fandt '-webkit-focus-ring-color'.  Fejl i fortolkningen af værdien for 'outline'.  Erklæring droppet. @ http://localhost/components/ckeditor/_source/skins/kama/mainui.css:100
[12:03:41.379] Fejl i fortolkningen af værdien for 'filter'.  Erklæring droppet. @ http://localhost/components/ckeditor/_source/skins/kama/toolbar.css:149
[12:03:41.453] Fejl i fortolkningen af værdien for 'filter'.  Erklæring droppet. @ http://localhost/components/ckeditor/_source/skins/kama/menu.css:55
[12:03:41.511] Fejl i fortolkningen af værdien for 'filter'.  Erklæring droppet. @ http://localhost/components/ckeditor/_source/skins/kama/richcombo.css:65

But all in all the "filter" declaration is a problem - it cannot interpret the value - so the error reads: "declaration dropped"...(toolbar.css line 149, menu.css line 55 and richcombo.css line 65)

Also the interpretation of the value for "outline" doesn't work. Here it expects to find a color but finds: 'auto' or '-webkit-focus-ring-color'... (mainui.css line 100)

It is quite annoying that these messages fill up when you are debugging

#8453 Linebreak after image in Opera brings image down confirmed Bug Normal
Description
  1. Enter some text on one line.
  2. Insert a smilie at the end of the text.
  3. Move caret after the smilies.
  4. Press Enter.

Image is brought down to the next line. Happens with ENTER_BR and ENTER_P

#8458 Ctrl + B can't work in this situation and javascript error is prompted confirmed Bug Normal
Description

I've tried on both ckeditor3.6.1, 3.6.2 demo page and the api.html example downloaded from the webpage. below steps can reproduce the bug - use the api.html page for testing:

  1. Type several lines in the input area.
  2. e.g.

line 1
line 2
line 3
line 4

  1. Select All or Ctrl + A
  2. Ctrl + B to bold them all
  3. press enter several new line at the beginning of the passage, that's mean below in source view:
    <p>
    	&nbsp;</p>
    <p>
    	&nbsp;</p>
    <p>
    	&nbsp;</p>
    <p>
    	<strong>line 1</strong></p>
    <p>
    	<strong>line 2</strong></p>
    <p>
    	<strong>line 3</strong></p>
    <p>
    	<strong>line 4</strong></p>
    
  4. Copy the text inside the "insert Text" box in api.html page, that's mean:

" First line with some leading whitespaces.

Second line of text preceded by two line breaks."

  1. paste the copied content in front of the bolded first line. After pasted the passage should be like this:
    <p>
    	&nbsp;</p>
    <p>
    	&nbsp;</p>
    <p>
    	&nbsp;</p>
    <p>
    	<strong><strong>&nbsp;&nbsp; First line with some leading whitespaces.</strong></strong></p>
    <p>
    	<strong><strong>Second line of text preceded by two line breaks.</strong></strong></p>
    <p>
    	<strong>line 1</strong></p>
    <p>
    	<strong>line 2</strong></p>
    <p>
    	<strong>line 3</strong></p>
    <p>
    	<strong>line 4</strong></p>
    
  1. select content from ^with'' to..... line 2^, so several lines are selected.
  1. now press Ctrl + B for several times, javascript error prompted with the following message:

message: 'null' is null or not an object line: 32 character: 544 source code: 0

  1. if no javascript error prompted, try to select several lines again, the most important thing is to select the text across the pasted content from insertText textarea to the middle of the rest passage. And then press Ctrl+B
  1. ctrl+b would n't work and javascript error prompted eventually.

ps: Platform - windows XP sp3 Browsers - IE8 version - ckeditor3.6.1, 3.6.2

NOTES:

  1. line number and character of the javascript error in step 9 changed sometimes
  2. during the reproduce process, don't switch to source mode.
  3. for text only contain one line to be pasted in step 6, may not got the same problem
#8462 Unnecessary paragraph gets created when trying to join two paragraphs using backspace confirmed Webkit Bug Normal
Description

Issue reproducible in Webkit from CKEditor 3.0

  1. Paste in the following code
    <p>
    	Line 1<br />
    	Line 2<br />
    	Line 3<br />
    	Line 4</p>
    
  2. Put cursor behind Line 2^ and press ENTER
  3. You will get
    <p>
    	Line 1<br />
    	Line 2</p>
    <p>
    	<br />
    	Line 3<br />
    	Line 4</p>
    
  4. Put the cursor in front of ^Line 3 and press BACKSPACE two times to delete br and 'join two paragraphs'

Result when switching to source in Webkit:

<p>
	Line 1<br />
	Line 2Line 3</p>
<p>
	Line 4</p>

while in other browsers:

<p>
	Line 1<br />
	Line 2Line 3<br />
	Line 4</p>

#8466 Customized filebrowser button is not open dialog for file selection confirmed Bug Normal
Description

System configuration:

  • Mac OS X Lion (10.7.2)
  • Safari 5.1.1 (7534.51.22) OR Firefox 7.0.1 OR Google Schrome 14.0.835.202 (ALL AFFECTED)
  • CKEditor 3.6.2 OR CKEditor NightyBuild (BOTH AFFECTED)

1) Open _samples/fullpage.html

2) On line 64, after:

CKEDITOR.replace( 'editor1',
        {
                fullPage : true,
                extraPlugins : 'docprops'
        });

Add following code for customizing Insert Image dialog:

CKEDITOR.on('dialogDefinition', function(ev)
{
        var dialogName = ev.data.name;
        var dialogDefinition = ev.data.definition;
        var editor = ev.editor;

        if (dialogName == 'image') 
        {
                var linkTab = dialogDefinition.getContents('Link');
                var browse = linkTab.get('browse');
                var hbox = 
                {
                        id : 'hboxBrowseButtons',
                        type : 'hbox',
                        padding: 2,
                        children :
                        [
                                browse,
                                {
                                        type : 'button',
                                        label : 'Select from site documents',
                                        id : 'site_documents',
                                        filebrowser :
                                        {
                                                action : 'Browse',
                                                target : 'Link:txtUrl',
                                                url : '/some/documents/browser/url'
                                        }
                                }
                        ]
                };

                linkTab.remove('browse');
                linkTab.add(hbox, 'cmbTarget');
        }
});                                     

3) Save it and load _samples/fullpage.html in browser.

4) Click "Insert Image" button, click "Link" tab and then click "Select from site documents" button - and it DO NOTHING and no errors reporting by browser!

But if I then edit _samples/fullpage.html on line 10 and replace

	<script type="text/javascript" src="../ckeditor.js"></script>

with

	<script type="text/javascript" src="../ckeditor_source.js"></script>

and repeat steps 3 and 4, then ALL working fine!

What is the bug?

#8467 <p> belongs with <br> at the end of list cause javascript error - nodeValue.length is null confirmed Bug Normal
Description

Below steps can reproduce the error.

  1. Paste the following content
<ul>
	<li>
		11111111111</li>
	<li>
		22222222222</li>
	<li>
		3333333333333</li>
</ul>
<p>
	<br />
	abcdefg</p>

  1. put the cursor position at the last line, e.g. cursor between d and e
  1. press left arrow key to walk through several lines from last line to the unordered list.
  1. javascript error occurs once the cursor position hit the unordered list content.

ps: the pattern unordered list + <p><br> causes this nodeValue.length error.

#8469 Id attribute get lost confirmed Bug Normal
Description

Paste this code in source mode (config.enterMode is set to CKEDITOR.ENTER_BR):

<div id="body">
  foo
</div>

In wysiwyg mode, push enter after foo and click on one of the bullet buttons. Back to source mode, the ul tag is outside the div element.

Expected result :

<div id="body">
  foo
  <ul>
    <li>
      &nbsp;
    </li>
  </ul>
</div>

Actual result :

<div id="body">
  foo
</div>
<ul>
  <li>
    &nbsp;
  </li>
</ul>
#8470 existing link can not be modified confirmed Bug Normal
Description
  1. open ckeditor at trunk and switch to source mode
  1. input
1<a href='http://www.taobao.com'>2</a>3
  1. switch to wysiswyg mode and select all text
  1. set link to http://www.ckeditor.com
  1. switch to source mode again

expect :

<a href='http://www.ckeditor.com'>123</a> (same with tinymce)

actual result :

<a href="http://www.ckeditor.com">1</a><a href="http://www.taobao.com">2</a><a href="http://www.ckeditor.com">3</a>

ps :

i attach a ugly patch for this problem ( i think it's a bug) , hope for a better solution

#8471 Webkit: When Copy/Paste Table Cell It Gets Pasted in next Column confirmed Bug Normal
Description
  1. insert default table
  2. in first cell, enter ddd
  3. Select whole cell (See selection.png)
  4. press ctrl+c
  5. Place cursor at the end of text ddd^
  6. press ctrl+v

Result: A cell is pasted into first cell in second column (See result.png)
Expected: A cell is pasted into first cell in first column

Issue reproducible in Webkit from CKEditor 3.0

#8473 JS error will cause CKEDITOR instances to not update their data to the iframe. confirmed Bug Normal
Description

We are using mutliple CKEDITOR instances on one page. We hide and display them by killing sections of the page and later repopulating them. Because we kill the CKEDITOR HTML before the final getData processing was finished it left the CKEDITOR in a state where getData and setData would not update the iframe contents.

I have attached the file with the fix that we added.

In /_source/plugins/editingblock/plugin.js line 47. You get the data from the editor. If an exception happens in the getData code then isHandlingData doesn't get set to false. After that the iframe contents become impossible to update. This will effect all other CKEDITOR instances on the screen.

We just added an empty try catch so as to ensure that regardless of errors that happen isHandlingData will always get reset to false. Thus not effecting the usability of any other CKEDITOR instance.

We did the same at line 74.

To reproduce: In our case, we would call editor.destroy() and remove the ckeditor instance from the screen. Destroy would fire an event that would later try to access the contentDocument of the iframe. That would throw the error because it no longer existed on the screen. We also had an blur event set to the editor that would grab the data.

Anyway I hope this helps.

#8476 Adding an anchor deletes the character to the right of anchor confirmed Bug Normal
Description

On entering an anchor at the start of a paragraph, the text or character to the right of the inserted anchor is deleted. This occurs in IE8.0.7601.17514 but not in Firefox 7.0.1, using Windows 7.

#8481 switching between source and wysiwyg introduces gratuitous white space confirmed Bug Normal
Description

Certain html snippets introduce extra white space on each switch between source and wysiwyg.

In 6.0.472.63 (59945) Built on Debian 6.0.2, running on Debian 6.0.3, Iceweasel/3.5.16 (like Firefox/3.5.16), and recent versions of Safari the attached snippet exhibits the problem in at least 3.6.2 and the nightly build as of 2011-10-27.

The behavior is somewhat different (less desireable?) with fullPage : true than without.

In both cases each round trip wysiwyg->source->wysiwyg introduces a <p>&nbsp;</p> fragment.

#8482 DispHTMLUnknownElement with invalid code confirmed Bug Normal
Description

By selecting a dom range who contains invalid Html tags, IE causes an error in the error function at the line 201 of the element.js:

this.$.appendChild( node.$ );

In the case value contains an invalid tag, fe.: <foo>some content</foo>, the "this.$" is an instance of DispHTMLUnknownElement who doesn't implements the appendChild function.

the error is caused by the range.select(true), this.createBookmark(); line 1636 plugins/selection/plugin.js, clone.insertNode( startNode ); line 528 /core/dom/range.js

We are currently experiencing this issue with IE 8 and 9, we haven't tried with prior version of the software.

#8485 SCAYT selection bug confirmed Bug Normal
Description

Go to the demo in IE9 and enable SCAYT. Now try using your mouse to highlight a line of text. After a few characters/words it will stop and bug out. It also bugs out using shift + arrow keys to highlight.

Also reports of this happening in ff, but I haven't been able to reproduce that one.

https://github.com/WebSpellChecker/ckeditor-plugin-scayt/issues/30

This bug can be reproduced only when user uses backward selection. And no problem with forward selection.

#8490 Ability to customize the contents of the a11yhelp dialog. confirmed New Feature Normal
Description

We can customize CKEditor to not display the collapse toolbar icon or the element path bar. However there is no way to remove the instructions for these features from the a11yhelp dialog.

It would be great if we could customize the a11yhelp contents to match the set of features that are available in different instances of the editor.

#8498 First word in webspelchecker not automatic selected in IE9 confirmed Bug Normal
Description

When opening the spellchecking dialog the first suggested word is not automaticly selected in IE9, you have to click it before the suggestions show at the bottom of the dialog. This is not the case in other browsers (IE8, FF, Chrome).

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
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