Custom Query
Results (6701 - 6800 of 11754)
Ticket | Summary | Owner | Type | Priority | Milestone | Component |
---|---|---|---|---|---|---|
#7351 | Image dialog: width/height must be a number | Bug | Normal | CKEditor 3.5.3 | General | |
Description |
When inserting an image, width and height fields are optional. However, when left empty, after pressing the "Ok" button, CKEditor shows two alert messages: "Width must be a number", "Height must be a number". Introduced with [6555]. Confirmed at least in IE8. Note: "0" should not be allowed, but empty values should be still allowed. |
|||||
#7353 | error in IE9: ';' expected | Bug | Normal | General | ||
Description |
When i run the fck editor 2.6.4 in IE9 i get a javascript error: ';' expected It seems that in the generated minified file a d/while loop is the problem. I did a local fix in the minified version, here's a patch for the source: Index: web/pub/fckeditor-2.6.4/editor/_source/internals/fckxhtml.js =================================================================== --- web/pub/fckeditor-2.6.4/editor/_source/internals/fckxhtml.js (revision 126316) +++ web/pub/fckeditor-2.6.4/editor/_source/internals/fckxhtml.js (working copy) @@ -446,7 +446,7 @@
+ } while ( htmlNode && htmlNode.nodeName.toLowerCase() == 'li' );
|
|||||
#7354 | Enter key should split a blockquote | Bug | Normal | CKEditor 3.6.2 | UI : Enter Key | |
Description |
Blockquotes are used mainly for replying in mails, in that environment the expected behavior is that when the user press Enter inside the quoted mail, that mail is splitted so he can reply inline to each part. The proposed patch fixed this issue. |
|||||
#7355 | [IE9] Pixelsharp toolbar layout | Bug | Normal | UI : Toolbar | ||
Description |
In IE9, toolbar widths seem to have a strange fractional width, which change the horizontal width with by as much as 5-6 px (in my use case). I couldn't trace if this is due to CSS (I'm not at all familiar with the UI design) or a rendering bug. |
|||||
#7356 | Style::removeObjectStyle something might be wrong | Bug | Normal | Core : Styles | ||
Description |
At the very least, in that function the var styles = CKEDITOR.style.getStyleText( def ); isn't used, but the final part to remove the style has remained that way since it was created in [5847] that changed also the applyObjectStyle but was reverted in [5978] So a little clean up is needed there, deciding if it must use getStyleText or def.Styles (but using a local variable), and correcting the comments. |
|||||
#7358 | safari: we can't come out of Numbered/Bulleted list when some formatting is applied to text in list item | Bug | Normal | CKEditor 3.5.3 | General | |
Description |
To reproduce the defect:
Expected Result: Cursor comes out of Numbered list and a new empty paragraph starts after Numbered list. Actual Result: Cursor will not comes out of Numbered list no matter how many times we press Enter. every time we press Enter it is creating a new empty list item. Same issue happens with Bulleted list |
|||||
#7359 | Safari : Paragraph formats not applied to list items properly | Bug | Normal | CKEditor 3.5.3 | General | |
Description |
To reproduce the defect: Scenario 1:
Expected Result: h1 tag is applied to list item and when we start typing the text, it should be in Heading 1 format. Actual Result: A with h1 is created inside list item and when we start typing the text, it is in normal format. Scenario 2:
Expected Result: Existing text in the list should be converted to Heading 1 format and when we start typing the text, it should be in Heading 1 format. Actual Result: Existing text in the list is converted to Heading 1 format,cursor goes to a different line in same list item & when we start typing the text, it is in normal format. |
|||||
#7360 | WebKit: problems with editor interface after browser window resize | Bug | Normal | CKEditor 3.6.3 | UI : Toolbar | |
Description |
Steps to reproduce:
Please note this happens to the first editor instance on the page with multiple editors OR to any CKEditor instance after you switch between Source and WYSIWYG view. |
|||||
#7361 | BIDI: Indentation is not applied to a RTL list item in a mixed content list | Bug | Normal | General | ||
Description |
Steps to reproduce the defect:
<ul> <li dir="rtl"> 1</li> <li> [2</li> <li> 3]</li> </ul>
Expected: The first list item (RTL) becomes indented. Actual: List items 2 & 3 (LTR) become indented. |
|||||
#7362 | BIDI: Numbers/Bullets not displaying in the editor in a mixed content list in FF | Bug | Normal | Core : BiDi | ||
Description |
Steps to reproduce the defect:
<ol dir="rtl"> <li> list item 1 <ol dir="ltr"> <li> list item 2</li> </ol> </li> </ol>
Expected: The number 2 should display in the editor relating to the second list item of the outer list. Actual: No number is displayed. Note: If the editor is removed the number is visible but if you recreate the editor the number disappears again. Same behaviour for bulleted lists. |
|||||
#7363 | [CKEditor.Net] Configuration bug | Bug | Normal | Server : ASP.Net | ||
Description |
hi, I make migration from the ancien .net component to the new official component i try to change a configuration value " toolBar " on the component function (OnInit, OnLoad, etc). protected override void OnInit(EventArgs e) { base.OnInit(e); this.Toolbar = "MyToolBar"; } but the value is not save on the config, i have always the FULL toolbar after debug i found this code
public CKEditorConfig config { get { if (ViewState["CKEditorConfig" + this.ClientID] == null) ViewState["CKEditorConfig" + this.ClientID] = new CKEditorConfig(this.BasePath); return (CKEditorConfig)ViewState["CKEditorConfig" + this.ClientID]; } set { ViewState["CKEditorConfig" + this.ClientID] = value; } } but this.ClientID is null when the affectation is make on constructor. And value change on the component life. and after when test if (ViewState+ this.ClientID? == null) the result is true, and the ToolBar value(and other) are overwrite why not use a private Guid, Created on the Constructor. private Guid _guidId = new Guid(); public CKEditorControl() { base.TextMode = TextBoxMode.MultiLine; _guidId = Guid.NewGuid(); this.config = new CKEditorConfig(this.BasePath.StartsWith("~") ? this.ResolveUrl(this.BasePath) : this.BasePath); } public CKEditorConfig config { get { if (ViewState["CKEditorConfig" + _guidId] == null) ViewState["CKEditorConfig" + _guidId] = new CKEditorConfig(this.BasePath, Context); return (CKEditorConfig)ViewState["CKEditorConfig" + _guidId]; } set { ViewState["CKEditorConfig" + _guidId] = value; } } A Guid ensures is always the same ViewState is used throughout the life of the component. |
|||||
#7364 | IE8: Extra empty list item is added to a list when using backspace to delete an outer list item | Bug | Normal | Core : Lists | ||
Description |
Steps to reproduce the defect:
<ol> <li>list item 1 <ol> <li>list item 2</li> </ol> </li> <li>list item 3</li> </ol>
Result: An extra empty list item is added underneath the second list item (see screenshot). |
|||||
#7365 | Problem adding horizontal rule | Bug | Normal | General | ||
Description |
I got the bug below using CKEditor 3.5.2 (revision 6450) on Firefox 3.6.15 in Linux Ubuntu when I tried to use horizontal rule. To reproduce this bug, just type two paragraphs and between both, put a horizontal rule. After, try to remove the element by clicking over it and press Del. I can't do this. If i try to remove using backspace, the problem occurs too. Thanks in advice. |
|||||
#7366 | Pasting from browser toolbar menu bypasses paste filters | Bug | Normal | CKEditor 3.6.3 | Core : Pasting | |
Description |
Tested in WinXP (FF 3.6.15, IE8) Seems nothing is listening to the document paste event. |
|||||
#7368 | [FF] Closing the Paste dialog with "Ok" button inserts a new line | Bug | Normal | CKEditor 3.5.3 | Core : Pasting | |
Description |
Reported in comment:14 by jamescun
It looks like it was introduced with [6458] (?) |
|||||
#7371 | Setting CKEDITOR.config.pasteFromWordRemoveFontStyles to false throws an exception when pasting from word | Bug | Normal | Plugin : Paste from Word | ||
Description |
TypeError: Cannot call method 'match' of null
File: pastefromword/filters/default.js
I've traced the error to the following call stack: Tested on Firefox 3, and Chrome. I've attached the example document that I was using to test pasting. |
|||||
#7379 | Language direction attr does not default to 'LTR' when no direction value is set. | Bug | Normal | Core : BiDi | ||
Description |
When the language direction attribute is not set explicitly then it defaults to 'ltr'. The problem occurs when we toggle between 'ltr' and 'rtl' languages. When we change it to 'rtl' for language like arabic the text direction changes to right to left. But when we change the language back to English and if we do not change the direction to 'ltr' the direction remains as 'rtl' even for English language. Whats expected is that if we do not set the language direction or language it is defaulted to 'en' and 'ltr'. But this is not happening. This is causing a problem in our application. We do not explicitly set the direction for english. So when we move from arabic to english the text direction still appears to be 'rtl' instead of being 'ltr'. I have attached a sample file wherein you can see this behavior. In the script i had not set the language direction to 'ltr' when language is set to 'en' as this is how it function is our application. Please check this our. Note: For some reason, in the sample html, you have to click the radio buttons 9 corresponding to the language) twice, every time for the editor to reload. As I was testing this out in a hurry I could not find out the reason. But I don't think thats crucial for the issue in question. |
|||||
#7381 | WebKit: Element styles are lost when preceding empty paragraph is removed | Bug | Normal | General | ||
Description |
|
|||||
#7383 | WebKit: an empty paragraph is added when pasting from Word | Bug | Normal | Plugin : Paste from Word | ||
Description |
Steps to reproduce
|
|||||
#7385 | Failure to display content produced in earlier version | Bug | Normal | General | ||
Description |
The following content, which was produced and displayed fine in 2.X, makes 3.5.2 fail: <div class=\"buttons\" style=\"float: right;\"> <ul> <li><a href=\"/fr/path/path\"><span>BLA BLA BLAH</span></a></li> </ul> </div> I have been able to reproduce this issue in the Demo page editors, too. More precisely, this content fails to be displayed in FF4, IE9 and Chrome 10, but is displayed fine in Safari5 (Win) and Opera11. It worked well in FF3.X last week. IE9 hangs. FF4 shows the following Javascript error: regular expression too complex Note that FF4 comes with a new Regex engine. |
|||||
#7386 | Switching modes (wysiwyg/source) not setting focus properly | Bug | Normal | UI : Source View | ||
Description |
Steps:
Result: Source mode is displayed, but the textarea does not have focus Furthermore, once you're in source mode if you then:
Result: WYSIWYG mode is displayed, but the editor does not have focus This feels like a bug to me, but after searching for similar cases and reading over previous related bugs that have been closed, I'm not so sure. My expected/desired behavior is also related to ticket #3709 (cursor position and/or the current selection should be remain intact when switching between editor modes). |
|||||
#7387 | Allow styleDefinitions that can be applied to a set of elements | New Feature | Normal | CKEditor 3.6.1 | Core : Styles | |
Description |
The current style system is based on defining which element is going to be used for that "Style", but there are times when it's desirable to have a Style that can be applied to a set of elements. This means of course, that in this situation the element must exist, it won't be created and so it's behavior is more along the current STYLE_OBJECT system The patch enhances the style system to allow an "elements" property in the style definition to specify the set of allowed tags, and also allows to specify the type of the style to override the default behavior so even if a single element like "p" is specified it can work in this way instead of having the default "block" behavior. |
|||||
#7388 | Code changes after page is edited | Bug | Normal | General | ||
Description |
http://www.pierewaaienscheveningen.nl/ This is about the fck editor build in the Website Baker CMS. Everytime I have to make a change in the Homepage of this site, I have to renew the code of the Addthis script: <!-- AddThis Button BEGIN --> <div class="addthis_toolbox addthis_default_style "> <a href="http://www.addthis.com/bookmark.php?v=250&username=pierewaaienscheveningen" class="addthis_button_compact">Share</a> <span class="addthis_separator">|</span> <a class="addthis_button_facebook"></a> <a class="addthis_button_hyves"></a> <a class="addthis_button_twitter"></a> <a class="addthis_button_email"></a> </div> <script type="text/javascript">var addthis_config = {"data_track_clickback":true};</script> <script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#username=pierewaaienscheveningen"></script> <!-- AddThis Button END --> Everytime the WYSIWYG feature is used, the code will be changed to: <!-- AddThis Button BEGIN --> <div class="addthis_toolbox addthis_default_style "><a class="addthis_button_compact" href="http://www.addthis.com/bookmark.php?v=250&username=pierewaaienscheveningen">Share</a> <span class="addthis_separator">|</span></div> <script type="text/javascript">var addthis_config = {"data_track_clickback":true};</script><script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#username=pierewaaienscheveningen"></script><!-- AddThis Button END --> And that does not work as intended! Hope you can help! |
|||||
#7392 | With multiple editor instances running, page is scrolled to last one in FireFox 3.6 | Bug | Normal | General | ||
Description |
If multiple editor instances are active on one page, the last/lowest instance automatically receives focus upon load. This happens only in Firefox (tested with V3.6.15 but not IEs) and only if all text areas are empty. This happens despite of CKEDITOR.startupFocus being set to 'false' explicitely. This is likely related to bug #4472 which was supposedly fixed in V3.4.1. I've attached a test page. |
|||||
#7396 | Special Characters Window causes CKEditor to never open again. | Bug | Normal | General | ||
Description |
Clicking the Omega (Special Characters) symbol, (http://screencast.com/t/LzmUDUbfl), selecting a character, and then clicking Ok, only to reopening CKEditor causes it never load properly (http://screencast.com/t/z4RGIXE5Bzm) Chrome spits on an error: Uncaught TypeError: Object #<Object> has no method 'indexOf' : ckeditor.js:9 |
|||||
#7397 | IE 9 and Paste | Bug | Normal | General | ||
Description |
Using IE9 and doing copy/paste. The system hangs. Sends ie in to light background and locks the IE application. Can do nothing but go to task manager and kill ie. |
|||||
#7401 | CKFinder translation files | New Feature | Normal | UI : Language | ||
Description |
Hello, I have complete Lithuanian translation files for CKFinder. |
|||||
#7402 | CKFinder translation files | New Feature | Normal | General | ||
Description |
Complete Lithuanian translation files for CKFinder. |
|||||
#7403 | FF: Dialogs shrink in width in V2 skin when dragged to the right of the screen | Bug | Normal | UI : Dialogs | ||
Description |
Steps to reproduce the defect:
Result: The dialog shrinks in width (see screenshot). This happens for all dialogs when dragged to the right of the screen. It also happens in the office skin. The problem was introduced in 3.5 in changeset 6118 when the getSize function in the dialog/plugin.js was changed from getSize : function() { if ( !this._.updateSize ) return this._.size; var element = this._.element.getFirst(); var size = this._.size = { width : element.$.offsetWidth || 0, height : element.$.offsetHeight || 0}; // If either the offsetWidth or offsetHeight is 0, the element isn't visible. this._.updateSize = !size.width || !size.height; return size; } to getSize : function() { var element = this._.element.getFirst(); return { width : element.$.offsetWidth || 0, height : element.$.offsetHeight || 0}; } The problem can be resolved by using the old getSize function. |
|||||
#7422 | Support drag&drop in Undo system | Bug | Normal | Core : Undo & Redo | ||
Description |
Drag&drop doesn't create Undo images, so they can't be restored correctly. The patch fixes the problem (as best as I can). In Firefox all the situations seems to be correct now. In IE8, drag&drop from external sources don't create the initial image. In Webkit the final image isn't created. Opera doesn't support Drag&drop |
|||||
#7428 | Dialog for managing list item properties | New Feature | Normal | UI : Dialogs | ||
Description |
As in #7131 we introduced list item properties pasted from MS-WORD, a corresponding dialog should be provided to make these properties "manageable" within the editor, "List Properties" dialog right now is only capable of managing the list root, it could be extended to support this case. |
|||||
#7429 | CKEditor doesn't scroll to show matched words when searching or replacing | Bug | Normal | CKEditor 3.6.3 | General | |
Description |
This dopesn't work under FF3.6 in WIN7 and XP since CKEditor version 3.0.1 In CKEditor version 3.0 "cycle search" doesn't work at all. When editor reaches the end of the document it doesn't come back up and displays the dialog - no occurrences found. NOW THE FUN PART: The text I have pasted is big enough for scrolling, but try to double the text by pasting it once more. Now everything works. Magic :) NOTE : I HAVEN'T TESTED IT ON FF4 YET. |
|||||
#7430 | Align button should work on selected objects | New Feature | Normal | CKEditor 3.6.3 | Core : Styles | |
Description |
If an object is selected (an image or a table), the alignment buttons should act on that specific object, not the paragraph. At least the align left and right buttons. These buttons should simply apply/remove the proper float style to the object. |
|||||
#7431 | Safari: Cursor stays in editing area after opening a dialog | Bug | Normal | General | ||
Description |
Not sure if it has somehting to do with #5156, because it started happening in 3.3. Confimed in Safari 5.0.4 @ Mac. Steps to reproduce
|
|||||
#7432 | Safari: we can't start a Numbered/Bulleted list with out focus in editor body | Bug | Normal | CKEditor 3.5.3 | General | |
Description |
To reproduce the defect:
Expected Result: See that Empty Numbered list starts. Actual Result: 2 empty paragraphs are created one with a span <p> <span id="cke_bm_101S" style="display: none; "> </span></p> <p> </p> |
|||||
#7433 | [IE9] enterBr doesn't put cursor to next line | Bug | Normal | CKEditor 3.5.3 | UI : Enter Key | |
Description |
With IE9 standard mode:
|
|||||
#7434 | [IE9] Inaccessible empty list item | Bug | Normal | Core : Lists | ||
Description |
With IE9 standard mode:
|
|||||
#7435 | [IE] Unable to focus elements path bar | Bug | Normal | CKEditor 3.5.3 | UI : Toolbar | |
Description |
Confirmed with IE8/9 on Win7 at least, ALT + F11 wasn't bring focus to elements path bar button. |
|||||
#7436 | BIDI - after alligning text to right, rtl setting is not respected any more | Bug | Normal | Core : BiDi | ||
Description |
1) Paste the following text: "This is some sample text. You are using" 2) Align text to right. 3) Click button 'rtl' 4) Place the cursor after word "using" and start typing or press space and start typing or press enter and start typing. 5) The elements are created with attribute 'rtl' but when I write the text inside them it's 'ltr'. Is this normal behavoiur of CKEditor? Till CKEditor version 3.4.1 when you align sample text to right and press 'rtl' 'ltr' buttons nothing happens. |
|||||
#7437 | [WebKit] Caret disappears after applying inline style on collapses selection | Bug | Normal | CKEditor 3.5.3 | General | |
Description |
On Webkit, applying an inline style on a collapsed selection (sounds weird huh? ;)) makes the cusror to disappear. |
|||||
#7438 | [WebKit] Impossible to create new lists without focus | Bug | Normal | General | ||
Description |
Note that a list is not created and a bookmark is being added to the document. |
|||||
#7441 | Changeing table properties when cursor inside <caption> failes | Bug | Normal | Core : Tables | ||
Description |
Load the following content and selection: <table border="0" style="width: 150px;"> <caption style="border:solid 1px black"> Table^ title</caption> <tbody> <tr> <td> </td> <td> </td> </tr> </tbody> </table>
JS error is thrown. |
|||||
#7446 | Error message when editing | Bug | Normal | General | ||
Description |
I am getting this error when trying to edit an article in joomla 1.6 Warning: Invalid argument supplied for foreach() in /home/wwwsecon/public_html/plugins/editors/ckeditor/ckeditor.php on line 320 |
|||||
#7448 | Create list on RTL paragraph | Bug | Normal | CKEditor 3.6.2 | Core : Lists | |
Description |
|
|||||
#7450 | Scayt dropdown menu looks bad in IE8 Quirks | Bug | Normal | UI : Skins | ||
Description |
In Quirks mode, Last line of SCAYT dropdown menu is placed wrong, see attached screen |
|||||
#7454 | ui_languages sample - list of styles does not load properly | Bug | Normal | CKEditor 3.5.3 | General | |
Description |
EnvironmentIE7,8,9 TC
ExpectedList contains default styles ActualEmpty Dropdown list shows, JS error is thrown Message: Object doesn't support this property or method Line: 82 Char: 395 Code: 0 URI: http://rev.ckeditor.com/ckeditor/trunk/6553/ckeditor.js Looks like introduced with r6548 |
|||||
#7455 | Extra line break is added automatically to the preformatted element | Bug | Normal | CKEditor 3.5.3 | General | |
Description |
Found in Firefox. |
|||||
#7457 | It is (still) possible to set width and height fields to zero | Bug | Normal | CKEditor 3.5.3 | UI : Dialogs | |
Description |
The dialog closes and the image width and height are set to 0. |
|||||
#7458 | Line breaks inserted when toggling between "Decrease Indent" and "Increase Indent" in lists | Bug | Normal | Core : Lists | ||
Description |
Paste the following code and switch to wysiwyg mode. You can always create such list your self in CKEditor. <ol> <li> i1 <ol> <li> i11</li> <li> i12</li> <li> i13</li> </ol> </li> <li> i2</li> <li> i3</li> <li> i4</li> </ol> Place the cursor behind (or before) 'i11' element. Now toggle between "Decrease Indent" and "Increase Indent" (in that order) few times. You will see that line breaks (br tags) are inserted after 'i11' element every time you press a button. This happens in FF browsers only. It has first showed up in CKEditor version 3.5.1. |
|||||
#7467 | [FF] Extra br in nested list | Bug | Normal | CKEditor 3.5.3 | Core : Lists | |
Description |
|
|||||
#7468 | Moving caret within RTL list, using keyboard | Bug | Normal | General | ||
Description |
In IE, Paste into CKEditor: <ol dir="rtl"> <li> This. <ol dir="rtl"> <li> This is CKEditor. <ol dir="rtl"> <li> This is some CKEditor.^</li> </ol> </li> </ol> </li> </ol> Set caret at the end of last line by mouse first case
Is it expected? second case
caret jumps in similar way to selection in first case. |
|||||
#7470 | Code with missing start tag is not being parsed correctly | Bug | Normal | CKEditor 3.5.3 | Core : Parser | |
Description |
Contents disappear. |
|||||
#7471 | FF: Fields in iframe dialog are empty when context menu is opened by right clicking on a resize handle | Bug | Normal | General | ||
Description |
Steps to reproduce the defect:
Result: The iframe dialog is displayed but all of the text fields in the dialog are empty. |
|||||
#7472 | IE: Toolbar buttons not working when large image/flash/iframe inserted in the editor | Bug | Normal | General | ||
Description |
Steps to reproduce the defect:
Result: The toolbar buttons are disabled because the Flash/Image/Iframe placeholder has the focus. |
|||||
#7473 | IE6: Dialogs containing dropdown menus become distorted briefly when dragging a dialog to a new position | Bug | Normal | UI : Dialogs | ||
Description |
Steps to reproduce the defect:
Result: See that the dialog becomes distorted briefly due to the dropdown menus in the dialog. |
|||||
#7479 | WebKit: Paragraph format not applied when editor is not focused | Bug | Normal | General | ||
Description |
Without focus in the editing area select some paragraph format, like "Heading 2". When typing text, the selected format is not used. If you check the source code, you'll see that an empty header was created, but the text has not been entered inside of it. <p> Sample text</p> <h2> </h2> |
|||||
#7480 | Bulleted lists copied from MS Word are pasted into the Editor as Numbered lists | Bug | Normal | CKEditor 3.5.3 | Plugin : Paste from Word | |
Description |
Steps to reproduce the defect:
Expected: The bulleted list is pasted into the editor. Actual: A numbered list is pasted into the editor. This is a regression in 3.5.3 |
|||||
#7482 | FF: Indented numbered list not displaying correctly when pasted from MS Word | Bug | Normal | Plugin : Paste from Word | ||
Description |
Steps to reproduce the defect:
Result: The 3rd list item is not properly indented (see screenshot). Note: The numbered list pastes as expected in IE. |
|||||
#7483 | Change checkbox state | Bug | Normal | General | ||
Description |
Using Chrome 10.0.648.151 for Linux one is able to double-click a checkbox (or right-click and go to checkbox properties). In the properties dialog you can check or uncheck 'Selected'. This does not change the state of the checkbox from checked to unchecked or vice versa. Using Firefox 3.5.15 for Linux the checkbox properties dialog box is unavailable. Neither double-clicking or right-click produces any events. |
|||||
#7488 | IE9 ignores multiple break points without inserted after | Bug | Normal | Core : Keystrokes | ||
Description |
Steps to reproduce:
Expected result: Sentence 1 Sentence 2 Actual Result: Sentence 1 Sentence 2 The break tags are correctly being created by the editor, but it seems that IE9 is ignoring them. How to fix: Open up enterkey\plugin.js Ln# 273-274: if ( !CKEDITOR.env.ie ) doc.createText( '\ufeff' ).insertAfter( lineBreak ); + Add + else { doc.createElement( ' ' ).insertAfter( lineBreak ); } |
|||||
#7490 | [IE] Extra <br> counted at the end of selection | Bug | Normal | CKEditor 3.6.2 | Core : Selection | |
Description |
With editor using enterMode BR:
|
|||||
#7492 | Overrides of Styles don't work correctly for classes | Bug | Normal | CKEditor 3.6.3 | Core : Styles | |
Description |
Load the XHTML output sample.[br] Select a word an apply for example the Comic font to it. Now select Times New Roman Expected results:[br] A single span that makes the text appear in Times New Roman. Actual results:[br] Two nested spans with and the text is shown in Comic. This is the way that the font styles are defined for that sample: font_style : { element : 'span', attributes : { 'class' : '#(family)' }, overrides : [ { element : 'span', attributes : { 'class' : /^Font(?:Comic|Courier|Times)$/ } } ] }, As the "element" is the same one that it's used in the overrides definition it seems to be cause of the problems. The patch fixes this problem, but there might be better ways to fix it if it was planned in a different way (and there might be other places to review) |
|||||
#7494 | Getting Unresponsive Script Error when we try to paste Numbered/Bulleted lists with one more than one level | Bug | Normal | CKEditor 3.5.3 | Plugin : Paste from Word | |
Description |
To reproduce the defect:
Expected Result: Numbered/Bulleted list is pasted properly. Actual Result: we are getting an Unresponsive Script Error |
|||||
#7495 | IE7 - additional paragraph added before list pasted from word | Bug | Normal | Plugin : Paste from Word | ||
Description |
EnvironmentMS Word 2007; WinXP IE7 Steps to reproduce
Actual resultUnder IE7, additional paragraph is added before pasted list <p> </p> <ul> <li> Test</li> <li> Test</li> <li> Test</li> </ul> |
|||||
#7496 | [Opera] Text bold and unbold problems | Bug | Normal | General | ||
Description |
On opera 11.01 windows 7. I use sample (eg replacebyclass.html). Steps to reproduce:
When I click enter I can make 'unbold' text but only once in new line. I tested this issue to version 3.5 (not below) . |
|||||
#7497 | Broken HTML - the order of elements is changed in the editor | New Feature | Normal | General | ||
Description |
Not sure if we can actually do anything with it. The following code (without the opening tag to start the unordered list): <p> Text above list</p> <li> One</li> <li> Two</li> <li> Three</li> </ul> <p> Text below list</p> <p> Another paragraph below</p> is changed into: <p> Text above list</p> <p> Text below list</p> <p> Another paragraph below</p> <ul> <li> One</li> <li> Two</li> <li> Three</li> </ul> |
|||||
#7498 | Font size: nested span tags | Bug | Normal | General | ||
Description |
Note: it is a bit different case than the one reported in #2203 |
|||||
#7500 | [Opera] Closing the Paste dialog with "Ok" button inserts a new line | Bug | Normal | CKEditor 3.5.3 | General | |
Description |
Exactly the same behaviour like #7368. Tested on Opera 11.01 Win 7. I have tested this in versions 3.5.2, 3.5.1 & 3.5 and there was all ok. |
|||||
#7501 | FF: New page does not fire selectionChange | Bug | Normal | CKEditor 3.5.3 | General | |
Description |
The selectionChange event is not being fired (visually: toolbar is not refreshed). |
|||||
#7502 | Select elements are 'duplicated' in Opera | Bug | Normal | General | ||
Description |
Paste the following code: <form action="formAct" id="myid" method="get" name="form"> <select name="myselect" size="1"><option selected="selected" value="val1">opt1</option><option value="val2">opt2</option><option value="val3">opt3</option></select></form> <p> <select name="myselect1" size="1"><option selected="selected" value="val1">opt1</option><option value="val2">opt2</option><option value="val3">opt3</option></select></p>
Result: New list with two elements is created.
Result: New list with one element is created. You can create as many selects as there are options in the first one select. See attachment. |
|||||
#7504 | [Opera] Accessibility shortcuts problem | Bug | Normal | General | ||
Description |
Tested on opera 11.01 Win 7. Shortcuts from http://docs.cksource.com/CKEditor_3.x/Users_Guide/Keyboard_Shortcuts in Accessibility section like (alt+0, alt+f10 , alt+f11 and others) doesn't work. |
|||||
#7506 | Cannot apply format to an empty editor using enterMode BR | Bug | Normal | Core : Styles | ||
Description |
Result: nothing happens. |
|||||
#7508 | Can't delete input form element after creating | Bug | Normal | General | ||
Description |
From version 3.3.2 of CKEditor, when you create a form and than input filed, than input field is created with break line (br) element above it (see code below). This prevents input from being deleted. {{{<form action="formAct" id="myid" method="get" name="form">
|
|||||
#7509 | CKEDITOR.currentInstance is null inside a plugin | Bug | Normal | UI : Toolbar | ||
Description |
I have a page with 2 instances of CKEditor and I'm using the MediaEmbed (http://www.fluidbyte.net/embed-youtube-vimeo-etc-into-ckeditor) plugin to add video to the content. I add the MediaEmbed button to the tool bar of the first instance only, but when trying to add media to the content, it gets inserted in the second instance. Debugging reveals that inside the plugin the "editor" variable which is passed to the plugin is the wrong (second) instance and the "currentInstance" property of the CKEDITOR object is null. |
|||||
#7510 | element br removed at the last | Bug | Normal | General | ||
Description |
While using the method CKEDIOTR.setData end of the line <br> element gets removed in firefox. config.enterMode = CKEDITOR.ENTER_BR, Firefox 3.6.13, Linux OS. |
|||||
#7512 | ckeditor accidently/wrongly creates class tags for all child items in a div | Bug | Normal | General | ||
Description |
I've the following code: <div class="main-holder main-holder-2"> HEADER TEXT </div> When i now select the HEADER and press H3 style the code gets: <div class="main-holder main-holder-2"> </div> <h3 class="main-holder main-holder-2">HEADER</h3> <div class="main-holder main-holder-2"> TEXT </div> But that's def. wrong / bad it should be: <div class="main-holder main-holder-2"> <h3>HEADER</h3> TEXT </div> Greets Stefan |
|||||
#7513 | Invalid markup in STYLE make CK crash | Bug | Normal | CKEditor 3.5.4 | Core : Parser | |
Description |
If i click the SOURCE-botton and insert <p style="color: red;>Red</p> (missing the last ") and then click SOURCE again to go back to normal edit-view; CK will go grey and stop working. |
|||||
#7514 | IE7 - Loss of focus for the second time to edit a link, image, smiley,.... | Bug | Normal | UI : Dialogs | ||
Description |
It's a case that only happens to me with IE7 (with Firefox, IE8 and Chrome works well). I use Ckeditor 3.5.2. If I edit a link for the second time, I get a javascript error referencing a loss of focus. Same happens if I edit an image a second time. The javascript error is the same, but on another line. Mistakes are the file "_source / plugins / dialogui / plugin.js", lines 1039 and 1021: Line 1039 // GECKO BUG: setTimeout() is needed to workaround invisible selections. setTimeout( function() { var e = me.getInputElement(); if ( e ) { e.$.focus(); //************* ERROR ****************// e.$.select(); } }, 0 ); Line 1021 // GECKO BUG: setTimeout() is needed to workaround invisible selections. setTimeout( function() { var element = me.getInputElement(); element && element.$.focus(); //************* ERROR ****************// }, 0 ); This error is not limited only to enter a second time in the editing of an image or link, but also occurs on any button on the display an editing window. If this is the second time the page stop working in the background (no javascript error, but inaccessible), see the special characters button or the smiley button for example. |
|||||
#7515 | Can't navigate to empty list item with arrow key | Bug | Normal | Core : Lists | ||
Description |
Result: You will have two-item list, but you won't be able to get to empty element with arrow keys. It's possible only with mouse Same thing happens, if you create this element in the middle of the list. |
|||||
#7516 | [IE] setData does not fire selectionChange | Bug | Normal | General | ||
Description |
Using setData does not fire the selectionChange event. It could be confirmed using the api sample. |
|||||
#7518 | Getting an error when deleting a row | Bug | Normal | General | ||
Description |
To reproduce the defect:
Expected Result: Current Table Row is deleted with out showing any errors. Actual Result: Current Table Row is deleted but an Error is shown in status bar and the Error is Invalid argument |
|||||
#7519 | style buttons do not toggle correctly in IE at the beginning of a non-empty paragraph | Bug | Normal | General | ||
Description |
In Internet Explorer 8 positioning the cursor on the beginning of a non empty paragraph and clicking on a basic style button (bold or italic) does not toggle the style button in the toolbar. The style is applied and when typing you will see the style in the text area. The problem only arises in non-empty paragraphs. |
|||||
#7521 | IE: Editing a table pasted table adds a new empty table in editor body. | Bug | Normal | Plugin : Paste from Word | ||
Description |
To reproduce the defect:
Expected Result: Table Properties dialog is closed, and table remains the same. Actual Result: Table Properties dialog is closed, but a new empty table with 3 rows and 2 cols is added.
Expected Result: Table Properties dialog is closed, and table remains the same. Actual Result: Table Properties dialog not closed and we it will show an error on status bar and Error is Invalid argument |
|||||
#7528 | "getFirst() is null or not an object" error on IE8 | Bug | Normal | General | ||
Description |
I get "getFirst() is null or not an object" error by the following steps:
|
|||||
#7529 | IE 6&7: Error when editing cell properties in table | Bug | Normal | General | ||
Description |
Happens in IE6 & IE7
function getSelectedCells( selection ) { // Walker will try to split text nodes, which will make the current selection // invalid. So save bookmarks before doing anything. var bookmarks = selection.createBookmarks(); // <------- tabletools/plugin.js, line 14 |
|||||
#7533 | SCAYT plugin becomes enabled after set data | Bug | Normal | UI : Spell Checker | ||
Description |
We have a two step validation/cleaning process for HTML. When the user presses our save button, we call 'updateElement' on the editor, send the data to our server, clean and return it, then call 'setData' on the editor. If the user disables SCAYT before saving it becomes enabled after the 'setData' call.
Steps to reproduce:
Expected result:
|
|||||
#7534 | Cursor is lost and backspace problem after aplying style display:none to a parent container | Bug | Normal | General | ||
Description |
When the parent container changes style from display:none to display:block, the cursor is not visible and if you press backspace, ALL previous content is deleted. I created a very simple html to show the problem, to reproduce: -extract ckeditor zip on any directory -put the attached file "sample.html" just before the ckeditor folder example: /sample.html /ckeditor/(ckeditor.js and all other ck files) -open sample.html -Write something in the editor -Press the "hide Editor" button -Press the "show Editor" button *notice the cursor is lost, and you can't know your current position* -Write something else -Press backspace key *All content is lost |
|||||
#7535 | Toolbar items wrapping | Bug | Normal | UI : Toolbar | ||
Description |
With a small window width (300px) some toolbar group is not wrapping onto the new line, Firefox is the only browser that works fine in this sense. |
|||||
#7536 | CKEDITOR.instances.<instance name >.document.$.body.setAttribute("contenteditable","off"); only works in Firefox but fail in IE 8 | Bug | Normal | Core : Read-only | ||
Description |
As I understand you want to have read-only version of CKEditor. Currently we are working on a new feature that might be what you are looking for. Please refer to #1376 for more details. If that is something that suits your needs than maybe you could participate in that discussion and give us your feedback on how you think this should work? Waiting for your comments. |
|||||
#7538 | [Chrome][Mac]: moving an image adds a meta tag | Bug | Normal | General | ||
Description |
After moving an image inside of editing area (e.g. a smiley), a meta tag is added to the source, even if CKEditor is not running in "Full Page" mode.
There is no JS error in the error console. |
|||||
#7539 | [WebKit] Font size combo scrolls down the document to the bottom | Bug | Normal | General | ||
Description |
Caused by [6453] |
|||||
#7541 | Unable to delete list by backspace at the document start | Bug | Normal | General | ||
Description |
Steps to reproduce:
Expected behaviour:
Actual behaviour:
Tested on:
Additional notes:
|
|||||
#7543 | Invalid handling of unclosed list items with link at the end | Bug | Normal | Core : Parser | ||
Description |
Using Chrome, go to source and paste: <ul> <li> This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor. </ul> Expected: <ul> <li> This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor.</a></li> </ul> Result: <ul> <li> This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor. </a></li> </ul> <p> <a href="http://ckeditor.com/"> </a></p> Not a recent regression. Didn't try Safari. |
|||||
#7547 | Selecting text and pressing enter does not clear text | Bug | Normal | UI : Enter Key | ||
Description |
I'm not sure if this is a design choice or a bug. Selecting text and pressing the enter key does not clear text.
Steps to reproduce:
Browsers tested, IE8/9, Chrome |
|||||
#7555 | [Firefox] Minor glitch with drop-down list of Link dialog window for anchors | Bug | Normal | UI : Dialogs | ||
Description |
When you want to add a link to an anchor, the down arrow button of the empty drop-down list By Anchor Id contains a minor visual glitch: it does not extend to the bottom border of the input field. After the list is populated (note that it is now only possible to add an anchor ID by editing the source), the button is displayed correctly. Please note that in earlier versions (CKEditor 3 up till 3.5.2) the glitch was a bit different as the whole input field had a smaller height. Steps to reproduce
|
|||||
#7558 | Asp.Net: Custom toolbar does not work | Bug | Normal | Server : ASP.Net | ||
Description |
Reported in http://cksource.com/forums/viewtopic.php?t=21915 editor.Toolbar="CHSummaryEditor" is changed by CKEditor control into "toolbar" : [["CHSummaryEditor"]] |
|||||
#7559 | ASP.NET: customising editor not working inside masterpage | Bug | Normal | Server : ASP.Net | ||
Description |
The following customisation works in page without masterpage but it does not work when the page is in a masterpage. any help?: <ckeditor:ckeditorcontrol ID="CKEDetails" runat="server" Toolbar="Source|-|NewPage|Cut|Copy|Paste|PasteText|PasteFromWord|-|Bold|Italic|Underline|Strike |-|Subscript|Superscript|NumberedList|BulletedList|-|Outdent|Indent|-|JustifyLeft|JustifyCenter|JustifyRight|JustifyBlock|-|Link|Unlink|-|Table|HorizontalRule|Styles|Format|Font|FontSize|TextColor" Width="500px" ></ckeditor:ckeditorcontrol> Reported in http://cksource.com/forums/viewtopic.php?t=21839 |
|||||
#7560 | ASP.NET VB.NET inline configuration | Bug | Normal | Server : ASP.Net | ||
Description |
I've just installed CKEditor.NET and i'm using asp.NET with VB. The Editor is showing and working fine however all my attempt to configure it are not taken in account. More information is available in the original bug report: http://cksource.com/forums/viewtopic.php?t=21780 |
|||||
#7562 | PHP cke_protected in dialog | Bug | Normal | General | ||
Description |
PHP works in attributes, but when open dialog it shows {cke_protcted_0} Example: make a form with action="<?php echo $_SERVER['REQUEST_URI']; ?>" source is right, forms dialog value shows protected. |
|||||
#7563 | htmlParser | Bug | Normal | General | ||
Description |
Bug or new feature request, I don't know. Please change it. I write a plugin to show placeholder icons for js and php code. For that I use return new CKEDITOR.htmlParser.element( 'img', attributes ); This works with js code. But php source is rewrite from <?PHP echo 'test'; ?> to <?php echo=""></?php> I can post more code when needed. |