Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (2601 - 2646 of 2646)

Ticket Summary Keywords Owner Type Status Priority
#14252 Styles dropdown doesn't always reflect the current style of the text line in Internet Explorer IE kkrzton Bug closed Normal
Description

Steps to reproduce

  1. Using the latest nightly build full demo eg. http://nightly.ckeditor.com/15-12-10-07-07/full/samples/ , add some new lines of text in the sample text by hitting enter and typing in some new lines (very short lines that don't wrap).
  1. Using Internet Explorer, apply style Subtitle to one of the new lines and style Special Character to the another line.
  1. Click away somewhere and click in the lines where you applied the styles.
  1. The style name is not displayed in the styles combo/dropdown.

Expected result

The style name should be displayed in the styles combo/dropdown.

Actual result

The style name is not displayed in the styles combo/dropdown.

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

This bug only happens in IE and not in Firefox or Google Chrome. Some styles (such as Italic Title) do display in the combo box. If you can tell me why some of the styles do appear, it would be nice if you could email me with this information so maybe I can change my style definitions. It doesn't seem to only be a case of whether it is a block vs an inline style (e.g. the Marker style works OK). My own custom styles don't show in the combo in IE and I don't know how to get it to work.

#14298 CKEditor treats button element as resizable image in IE11 ie11, button, image Bug closed Normal
Description

When using CKEditor and IE11, a <button> element inside the CKEditor's contents is displayed in a way that button appears to be a resizable image. In fact, the handles can be dragged to resize the button. This behavior does not occur in Firefox or Chrome. This behavior complicates editing because multiple clicks are required when I want to edit the button's text in WYSIWYG mode.

Steps to reproduce

  1. Use any CKEditor build with IE1
  2. Set an editor instance's contents to "<button>Button</button>".
  3. Click, double-click, and triple-click the button to see that the button will be outlines with dragging handles.

Expected result

The button should appear as a typical button that is not resizable and does not require multiple clicks to focus on the editable text of the button.

Actual result

The button shows resizing handles and outlines the button as if it were an image.

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

  1. This only happens in IE11.
  2. Windows 7
  3. CKEditor v4.5.6
  4. Plugins: any combination of installed plugins; removing all standard plugins with removePlugins option will not fix this behavior
#14312 [IE] Artifact is visible after pasting of any text IE Tade0 Bug closed Normal
Description

Steps to reproduce

  1. Open http://ckeditor.com/demo#standard from IE 10 or 11(monitor should have width more then 1500px otherwise need to use zoom(Ctrl+scrolling))
  2. Copy any text from any source
  3. Right click on CKeditor
  4. Click paste button and see page

Expected result

No any artifacts on the page

Actual result

pastebin element is visible on the page

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

last CKEditor version; IE 10, 11 only; Width of monitor > 1500px;

Solution

I've found possible solution for this issue.

\ckeditor-dev-master\plugins\clipboard\plugin.js Line 906: pastebin.setStyle( editor.config.contentsLangDirection == 'ltr' ? 'left' : 'right', '-1000px' );

need to increase '-1000px' to '-10000px'

#14313 Copying/pasting nested lists in IE results in flat list IE Can't Fix Bug confirmed Normal
Description

Steps to reproduce

  1. Open replacebycode sample in IE and create nested list in the editor or just paste below code:
    <ol>
    	<li>one
    	<ol>
    		<li>two</li>
    		<li>three</li>
    	</ol>
    	</li>
    	<li>four</li>
    </ol>
    
  2. Select list with a mouse (from one to four or from four to one)
  3. Paste the list somewhere below existing one (enter down if necessary)

Expected result

Nested list should be pasted.

Actual result

Flat list or single level list gets pasted into editor.

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

The same problem can be reproduced in native IE. Please use attached file. Just select, copy and paste the nested list below existing list.

#14315 [IE] Inconsistent color in strikethrough when using Native Browser Spell Checker IE Bug closed Normal
Description

Steps to reproduce

  1. Go to http://sdk.ckeditor.com/samples/spellchecker.html - Using Native Browser Spell Checker
  2. Type some misspell words along with other words

Expected result

Strike through has consistent black line.

Actual result

Strike through line is inconsistent

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

#14330 [IE11] Highlight Shift with Japanese IME when converting to Kanji on CKEditor ibm IE Bug closed Normal
Description

This is customer reported issues & high priority for IBM

Steps to reproduce

* install Japanese IME first

  1. Open ckeditor demo page http://ckeditor.com/demo#full
  1. Input two lines of sample text, e.g.

(line 1) watasinonamaehanakanodesu (line 2) watasinonamaehanakanodesu

  1. Go to end of first line, type <Enter> key to go to new line
  1. Turn on IME (select Hiragana)
  1. Type "watasinonamaehanakanodesu" and press <space bar> to trigger converting the input texts to clauses
  1. Press <right> arrow key
  1. Press <right> arrow key again
  1. Blue highlight "area" and "underline" will shuffle around as we key in <left> or <right> arrow keys.

Pls see attached screenshots for references

Expected result

After Step 5, The area should not be highlighted when user uses Left or Right arrow keys. It should only move the cursor

Actual result

After Step 5, Area is highlighted when user uses <left> or <right> arrow keys. It should only move the cursor.

#14337 [IE] Proper selection restoring after modification of text while unfocused IE Bug confirmed Normal
Description

In IE (opposite to other browsers) opening dialogs causes loss of focus in editable area. When focus is lost selection is stored (core/selection.js#L957) and when focus is gained again by editor, saved selection is restored (core/selection.js#L936 and core/selection.js#L1650).

The problem is when during the unfocused period something in an editable area is changed (especially in nodes that were selected and are going to be used for restoring). In such case restoring selection produces some unexpected results because of the changes, e.g.

  1. Open demo (http://ckeditor.com/demo#full)
  2. Remove all sample content
  3. Type test case 1
  4. Select tes[t case 1]
  5. Press Replace button on the toolbar
  6. In the Find what field type: case
  7. In the Replace with field type: cc
  8. Press Replace All button
  9. Press OK button on the notification Message Box
  10. Press close button on the Find and Replace dialog

Selection which was restored is:

tes[t ]c 1

and probably should be (that's the way it works in other browsers):

tes[t c 1]


In this particular case the restored selection looks like this because text node where split (while replacing) to:

test |c| 1

and saved selection points to first text node with valid startOffset but outdated endOffset (so the selection ends where text node ends). There are also other cases like #12459, #11962.

Happens in IE8 - IE11.

#14518 On IE11, data-bound elements in dialog are not updated when clicking OK IE Bug pending Normal
Description

Perhaps related to Issue 14517, but this one only happens on IE. On Safari and Firefox, there is no issue. The testcase uses a very simple example of knockout.js to bind an html input element to a value in a viewModel. It seems that because ckeditor tries to manage all aspects of focus and blur, something is lost (on IE only) when the OK button is clicked and the input field loses focus.

Steps to reproduce

  1. Download the attached plug-in to plugins folder, and add to config.js

config.extraPlugins = 'bugplugin';

  1. Run index.html, adjusting paths to require.js and knockout.js as needed
  2. Follow the simple testcase on-screen, basically change a value and click OK.

Expected result

Alert should show the value you just entered into Input1.

Actual result

On IE11, the current value is not shown . The old value is shown.

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

#14525 Japanese charactor disappeared while typing IE11 Bug confirmed Normal
Description

Steps to reproduce

  1. In the editor demo (http://ckeditor.com/demo#standard), click inside the window and performed a CTRL+A to select all text, and then hit the Delete key.
  2. Once all data was deleted from that window, please select "Japanese" on the Windows language tool bar. Select the "Full-width Katakana" IME on the Windows language tool bar.
  3. Go to inside the editor window and hit Enter to move to second line.
  4. Hit the "A" key (あ) 30 times, and the cursor moved to the beginning of the line.
  5. Hit the "A" key once more, and then all but two characters disappeared from that line.

Expected result

The cursor should not be moved to the beginning of the next line. If I hit "A" key 31 times, there should be 31 charactors appeard.

Actual result

When I hit the "A" key 30 times, the cursor moved to the beginning of the next line. If I hit the "A" key once more, and all but two characters disappeared from that line.

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

I could reproduce this with CKEditor 4.5

#14542 Copying numbered list from MS word doesn't keep list formatting IE11 Support Tade0 Bug closed Normal
Description

Steps to reproduce

  1. Create following type of bulleted list in MS Word
  1. Level1
  2. Level11
    1. level2
    2. level21
      1. Level3
      2. Level31
  1. Copy from word and paste into CKEditor window

Expected result

Bullet list should have same formatting when copied to CKEditor.

Actual result

List with 'a' and 'i' are also numbered as numeric.

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

Works fine in Chrome but doesn't work in IE11. Using latest version (i.e. 4.5.7) of CKEditor. Pastefromword plugin is also installed.

#14571 IE11: Widget selection lost after Undo & Redo IBM IE Tade0 Bug assigned Normal
Description

Steps to reproduce

  1. Open Media Embed sample [​http://sdk.ckeditor.com/samples/mediaembed.html]
  2. Delete existing content, add few paragraphs of text
  3. Embed a video in between paragraphs by using Media Embed dialog.
  4. Switch to source, change widget alignment to center by adding
    class="embed-narrow embed-align-center"
    
  5. Switch back to Richtext, select the widget
  6. Click Undo
  7. Click Redo

Issue: Widget selection lost and first paragraph in editor body gets selected

#14578 ckeditor in IE trusted site does not work well with internet zone Active Scripting security is disabled IE Bug closed Normal
Description

Steps to reproduce

  1. Disable active scripting in Internet Options.
  2. Register the site as Trusted Site.
  3. Open bundling sample(/samples/index.html) and click Bold button.

Expected result

Button state gets active.

Actual result

Nothing happens.

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

Tested with cke 4.5.8 on IE10(win8.0) or IE11(win8.1). It has been working as expected with IE10 + cke 3.

The symptoms are similar to the following one.

https://dev.ckeditor.com/ticket/8532

The workarround posted in the ticket seems to work for my issue too.

var toolbox = document.getElementById('cke_editor').getElementsByClassName('cke_top')[0]; var html = toolbox.innerHTML; toolbox.innerHTML = html;

#14594 enterMode=ENTER_BR setting breaks IE10 behavior IE10 Bug closed Normal
Description

Steps to reproduce

  1. Open sample (samples/index.html)
  2. Run following code with developer tools console in IE10 to reset the setting.
    CKEDITOR.instances['editor'].destroy();
    CKEDITOR.replace('editor', {enterMode: CKEDITOR.ENTER_BR});
    
  3. Empty the editor area then click 'horuzontalrule' button.

Expected result

A Line is drawn and cursor is located right after it.

Actual result

A Line is drawn and cursor is on top of it.

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

IE10, CKEditor 4.5.7. It dosn't happen with IE11 or Firefox.

#14634 getSelectedText omits <br> characters in IE IE Bug confirmed Normal
Description

Steps to reproduce

  1. Enter following text in CKEditor in IE 11

line 1
line 2
line 3

  1. select text and In JS call
    CKEDITOR.instances[yourid].getSelection().getSelectedText()
    
  1. The returned text is "line 1line 2line 3"
  2. The length of string is 18. While in chrome it is 21

Expected result

The returned text should have \n characters

Actual result

The returned text is "line 1line 2line 3" The length of string is 18. While in chrome it is 21

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

Chrome: The returned text is "line 1\nline 2\nline 3"
IE11: The returned text is "line 1line 2line 3"

#14688 SCRIPT16389: Unspecified error in IE 11 IE11 Bug closed Normal
Description

I am using ckeditor version 4.5.7. and in this version I am facing issue with "SCRIPT16389: Unspecified error" in IE 11.

  1. Inserted one basic template table with header,subheader,content and footer part.That are the td's id of a table.
  2. Now select one cell i.e. contenet and set as contenteditable=true.
  3. Click on button called myckw.
  4. Onclick first check (edtr.getSelection().getStartElement().getId==="content").
  5. If true then edtr.execCommand("myckw") which will insert myckw (widget) in that perticular selected td.

Now the issue is when I click on myckw button. I am getting below error. SCRIPT16389: Unspecified error File: ckeditor.js, Line: 439, Column: 414

Any help would be appreciated. Thanks in advance.

#14704 IE11: Japanese Kanji character breaks when you repeatedly typing Japanese IBM IE11 Bug confirmed Normal
Description

Wikipedia Link for Japanese writing system. https://en.wikipedia.org/wiki/Japanese_writing_system

platform to reproduce: IE11 only Input method: windows IME

Steps to reproduce:

  1. Open an editor
  1. Input Japanese chars, in Hiragana. e.g. input "さいげん" (saigen)
  1. IME will help you to convert Hiragana to Kanji. ("さいげん" -> "再現")

さ: http://graphemica.com/%E3%81%95 い: http://graphemica.com/%E3%81%84 げ: http://graphemica.com/%E3%81%92 ん: http://graphemica.com/%E3%82%93 再: http://graphemica.com/%E5%86%8D 現: http://graphemica.com/%E7%8F%BE

  1. Try to repeat steps 2 & 3.
  1. sometimes the Kanji will break:
    • "再" is missing after conversion, only "現" remains.
    • it shows "再現さ再現", or some other combination of both Hiragana and Kanji.

This issue not reproducible in other browser or application (e.g. notepad). See attachments for more information.

This is customer reported PMR & high priority for us

#14733 setting Italic fails for Japanese character, in Japanese locale IBM IE11 Bug pending Normal
Description

Steps to reproduce

  1. change all locale to Japanese
  2. open the demo site (http://ckeditor.com/demo) and type some Japanese character
  3. select those Japanese character and set Italic

Expected result

the selected text will set to Italic

Actual result

the selected text will still keep non-Italic

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

Win10+IE11/Edge

OS locale set to Japanese Browser locale set to Japanese (try to make sure it's 100% Japanese... it's the key to reproduce. i have a Win10 VM that cannot reproduce this and i suspect it's because it's not set Japanese completely)

#14755 [Webkit][IE8] Browser hangs when user set Number list & then insert table IBM Blink Webkit IE8 Marek Lewandowski Bug closed Normal
Description

Test data:

 <div>aaaaaaaaaaaaaaaa</div>
  <div class="bbbbbbbbbbbbb"><br></div>

To reproduce the defect:

  1. Open nightly build, clear all editor content. set above data as editor content.
  1. Ctrl+A to select all the content.
  1. Click on "Insert/remove number list" to convert 2 lines into number list.
  1. List should be selected.
  1. Click "Table" icon to open Table Properties dialog & click OK to insert table with default values.

Issue: Browser hangs

#14767 Browser becomes unresponsive at the input of the multi-byte character IE11 Bug confirmed Normal
Description

Page crashed when typing multi-byte characters( Japanese in my test ) after hitting enter key in any cell.

Steps to reproduce

  1. Paste this HTML in source mode.
    <table align="left" border="1" cellpadding="1" cellspacing="1" style="width:100%" summary="">
    <caption>
    <p style="text-align: left;">sample</p>
    </caption>
    <tbody>
    <tr>
    <td style="height:auto; width:13%">sample</td>
    <td style="height:auto; width:85%">sample</td>
    </tr>
    <tr>
    <td style="height:auto; width:13%">sample</td>
    <td style="height:auto; width:85%">sample</td>
    </tr>
    <tr>
    <td style="height:auto; width:13%">sample</td>
    <td style="height:auto; width:85%">sample</td>
    </tr>
    </tbody>
    </table>
    
    <p>&nbsp;</p>
    
  1. Change to WYSIWYG mode.
  1. Try to input multi-byte characters in any cell.

Expected result

Multi-byte characters are normally input.

Actual result

Page crashed and reloaded with message said: web page is not responding.

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

Happened on Windows7 + IE11 and Windows8 + IE11.

#14823 IE11 Image Insert IE11 Bug closed Normal
Description

Steps to reproduce

  1. Insert Image, attach uploaded Image.
  2. Save and Close Image Dialog.
  3. Verify Cursor is after image, on the same line ( source view has cursor in same P tag)
  4. Insert Second Image, attach and upload image.
  5. Save and Close Image Dialog.

Expected result

Two Images in correct order contained in same p tag.

Actual result

Second Image inserted at beginning of Document.

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

IE11 , Windows 7 , CKeditor 4.5.7

#16472 [IE/Edge] Bold (and other style tags) are applied multiple times IE Bug confirmed Normal
Description

Steps to reproduce

  1. Go to http://ckeditor.com/demo#full.
  2. Switch to source and paste following html <p>This is <strong>example</strong> text</p>.
  3. Switch back to WYSIWYG mode.
  4. Focus content like <p>This ^is <strong>example</strong> text</p>.
  5. Use keyboard (arrows + shift) to create selection like <p>This [is <strong>exam]ple</strong> text</p>.
  6. Apply bold.

Expected result

Resulted html should be <p>This <strong>[is exam]ple</strong> text</p>.

Actual result

Resulted html is <p>This <strong>is <strong>exam</strong>ple </strong>text</p>. For most styles it is hard to notice, but for bold it creates double bolded text (at least in IE11).

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

Checked on IE11 in CKEditor 4.5.11. Does not occur in Chrome or FF.

#16500 Copy/Paste list doesn't paste first bullet. IE9-11 Bug confirmed Normal
Description

Steps to reproduce

  1. Insert below code into editor and copy the list by selecting it from bottom to top
    <ul>
    	<li>test1
    	<ul>
    		<li>test2
    		<ul>
    			<li>test3
    			<ul>
    				<li>test4</li>
    			</ul>
    			</li>
    		</ul>
    		</li>
    	</ul>
    	</li>
    </ul>
    <p>&nbsp;</p>
    

Expected result

Whole list gets pasted.

Actual result

List gets pasted without fisr bullet:

<p>test1</p>
<ul>
	<li>test2
	<ul>
		<li>test3
		<ul>
			<li>test4</li>
		</ul>
		</li>
	</ul>
	</li>
</ul>

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

This is how it works in IE. Please use below code on HTML5 page and you will see it works like that.

<div style="margin: 20px; border:1px solid black; width:500px;" contenteditable="true">
<ul>
    <li>111
    <ul>
        <li>222
        <ul>
            <li>333</li>
        </ul>
        </li>
    </ul>
    </li>
</ul>
<p>&nbsp;</p>
<p>&nbsp;</p>
</div>

In CKEditor you can use elements path at the bottom. Just click on list and then on left most ul element to select whole list.
Ctrl+A also works and from what I have checked selecting from top t bottom does as well. Only select from bottom to top doesn't work but this is browser issue.

#16625 FF & IE: Increasing Indent not working on lists IBM IE Firefox Bug confirmed Normal
Description

Steps to reproduce

  1. Open nightly build http://nightly.ckeditor.com/16-11-07-07-07/full/samples/
  2. Enter few lines of text.
  3. Select all content using CTRL + A
  4. Click on Increase Indent icon few times

Expected result : List Indented

Actual result: Nothing happens This works in Chrome

#16681 Pasting List from Word in IE wraps list utems in paragraphs. IE11 Bug confirmed Normal
Description

Steps to reproduce

  1. Create standard ordered or unordered list in MS Word file
  2. Clear editor contents
  3. Copy the list from word file and Paste it into editor

Expected result

Just ul/ol tags get pasted.

Actual result

Each list item text is wrapped in paragraph.

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

Problem can be reproduced in CKEditor 4.6 in IE11.

NOTE: Actually native IE11 produces same result so I'm not entirely sure if CKEditor should extra filter it or rather IE11 should have that fixed:

<ol style="list-style-type: decimal; direction: ltr;">
<li style='color: rgb(0, 0, 0); font-family: "Calibri","sans-serif"; font-size: 11pt; font-style: normal; font-weight: normal;'>
<p style='color: rgb(0, 0, 0); font-family: "Calibri","sans-serif"; font-size: 11pt; font-style: normal; font-weight: normal; margin-top: 0cm; margin-bottom: 0pt; mso-list: l0 level1 lfo1;'>
<span lang="PL" style="mso-ansi-language: PL;">Test1</span>
</p>
</li>

<li style='color: rgb(0, 0, 0); font-family: "Calibri","sans-serif"; font-size: 11pt; font-style: normal; font-weight: normal;'>
<p style='color: rgb(0, 0, 0); font-family: "Calibri","sans-serif"; font-size: 11pt; font-style: normal; font-weight: normal; margin-top: 0cm; margin-bottom: 0pt; mso-list: l0 level1 lfo1;'>
<span lang="PL" style="mso-ansi-language: PL;">Test2</span>
</p>
</li>

<li style='color: rgb(0, 0, 0); font-family: "Calibri","sans-serif"; font-size: 11pt; font-style: normal; font-weight: normal;'>
<p style='color: rgb(0, 0, 0); font-family: "Calibri","sans-serif"; font-size: 11pt; font-style: normal; font-weight: normal; margin-top: 0cm; margin-bottom: 10pt; mso-list: l0 level1 lfo1; tab-stops: 179.25pt;'>
<span lang="PL" style="mso-ansi-language: PL;">Test3</span>
</p>
</li>
</ol>

On the other hand, paragraphs weren't populated in IE11 so maybe this can be fixed by the editor.

#16718 [IE11][CF] Styles applied to the wrong node when CF used exactly on the same position for the second time. IE11, Copyformatting Bug confirmed Normal
Description

Steps to reproduce

Can be easily reproduced on /tests/plugins/copyformatting/manual/safaricolor (for both editors).

  1. Put caret inside the first paragraph e.g. Text witho^ut any format.
  2. Click Copy Formatting button.
  3. Click on the last word (Orange) inside last paragraph like Ora^nge.
  4. Put caret inside second paragraph e.g. Text with Font Georg^ia Size 22 & Text Colour Red.
  5. Click Copy Formatting button.
  6. Click on the last word (Orange) inside last paragraph like Ora^nge.

Expected result

On the second click styling should be copied and applied to the word Orange.

Actual result

On the second click, styling is applied to first part of the last paragraph Text with Background Colour instead of Orange word.

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

Happens on IE11, Chrome and Firefox works fine.

This issue was found while fixing #16618. It looks similar but the cause is different so it was extracted as a separate issue.

#16797 On IE11, style="overflow-x: auto" becomes -ms-overflow-x when switching between source and wysiwyg source, overflow, IE10, IE11, Bug closed Normal
Description

Steps to reproduce

  1. Open a ckeditor in IE11
  2. In source view, add <div style="overflow-x:auto"></div>
  3. Switch to editor view then back to source view

Expected result

<div style="overflow-x:auto">

Actual result

<div style="-ms-overflow-x:auto">

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

allowedContent = true;

extra plugins: colordialog, oembed, widget, aviary, nanospell

Still happens if the div has contents within it

I've tried this on 4.6.1, 4.6.2 and 4.4.2 and it happens the same.

We have a data processor with .toHtml and .toDataFormat methods, however logging out at various points of each, it is still overflow-x on the last line of .toHtml and comes to .toDataFormat as -ms-overflow-x. Commenting out the entire data processor causes the bug to persist.

#16820 [BR MODE][IE10] Inserting horizontal line and clickinng below it causes error IE10 Bug closed Normal
Description

Steps to reproduce

  1. Load CKEditor with enter mode set to BR.
  2. Clear editor contents with New Page button
  3. Insert horizontal line
  4. Click below the line

Expected result

Nothing happens.

Actual result

JavaScript error gets thrown.
Message: SCRIPT5007: Unable to get value of the property 'ownerDocument': object is null or undefined.
Line: 788
URI: /ckeditor/core/selection.js

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

Problem can be reproduced in IE10 only starting from CKEditor 4.0.

#16845 [IE11] Cursor jump to the top of the editor IE Tade0 Bug closed Normal
Description

Steps to reproduce

  1. Change the editor to the source code mode.
  2. Copy and paste the contents in the attached file.
  3. Change the editor to the WYSIWYG mode.
  4. Scroll down the editor viewport to the bottom.
  5. Left mouse click on the last 'brownie.jpg' image.
  6. Cursor jump to the top of the editor viewport.

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

[CKEditor version]

[Client OS, Browser]

  • Windows 10 Pro(64bit) / Internet Explorer 11
#16854 startupFocus: false doesn't work in IE 11 startupFocus,IE Bug new Normal
Description

Steps to reproduce

The CKEditor is used as a component in a react interface with possibility to add new groups of form elements for user input. Whenever the group of form elements consists of at least one RTE, this element is focused in the interface although there are other form elements above it.

The configuration for startupFocus is set on false. This works without problems in Firefox or Chrome, but has no effect on its behaviour in IE 11.

Expected result

No scroll event to focus the CKEditor when adding a group of several form elements.

Actual result

CKEditor is focused.

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

  • Internet Explorer 11
  • Windows 7
#16901 Duplicate selection field after changing some styles selection field Bug new Normal
Description

Steps to reproduce

  1. Add new selection field
  2. Set focus on it (select it)
  3. Click list button, or Doubleclick on bold/italic/underline... button

Expected result

Selection field hasn't duplicate.

Actual result

Selection field duplicates in different ways. It depends on applied style.

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

Ckeditor version - 4.6.2 Installed plugins - Forms https://pp.userapi.com/c639421/v639421502/18ebd/YuiDbPEuWr8.jpg https://pp.userapi.com/c639421/v639421502/18ec6/2LN8AFTuLnY.jpg

#16914 TAB key space doesn't get copied from MSWord to CKEditor in IE11 IE Edge Bug closed Normal
Description

Steps to reproduce

  1. Create a word doc.
  2. Type some Text with TABS Space. Copy It.
  3. Paste it to CKEditor in IE11.

Expected result

TABS Space should also be copied.

Actual result

Only single space appears.

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

Browser - IE11, CKEditor Version - 4.6.1 with latest PasteFromWord and Clipboard plugins It can also be verified in CkEditor.com home page's DocumentEditor/Artical Editor section in IE11.

#16932 [ENTER_BR]: Enter hides space before text and leaves cursor in first line. IE EDGE Bug confirmed Normal
Description

Steps to reproduce

  1. Set editor enterMode to ENTER_BR
  2. In editor, enter text - 'Send to 123 Main St'
  3. Place cursor immediately after 'to', before space
  4. hit Enter key

Expected result

Space in front of '123' is visible and cursor is blinking before it.

Actual result

There is no space in front of '123' and cursor is still blinking at the end of first line.

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

#16941 Deleting Paragraph before the description list, changes first list element to instead of moving cursor into list Webkit IE Support Bug confirmed Normal
Description

Steps to reproduce

  1. Allow dl/dd/dt elements to content filtering
  2. Set editors source content:

<p>Para</p><ol><li>li A</li><li>li B</li></ol><p>Para</p><dl><dt>dt A</dt><dd>dd A</dd><dt>dt B</dt><dd>dd B</dd></dl>

  1. Put cursor at the beginning of first "Para"
  2. Press delete until text is deleted plus once more to delete paragraph
  3. Repeat 3 and 4 to next paragraph and compare results

Expected result

Cursor is blinking ath the start of first list element

Actual result

First list element gets changed into paragraph

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

This works fine in Firefox. Chrome has been broken since CKEditor 4.4.1 and hasn't worked in IE at all.

You will get the same result in native contenteditable element in Webkit and IE with below code:

<div style="border:1px solid black; width:500px;" contenteditable="true">
<p>Para</p><ol><li>li A</li><li>li B</li></ol><p>Para</p><dl><dt>dt A</dt><dd>dd A</dd><dt>dt B</dt><dd>dd B</dd></dl>
</div>

The reason I have reported this bug is because it has been working in Chrome till version 4.4.0 so maybe there is something we can do to improve default behaviour.

#17002 [IE9-11] Advanced Color Dialog won't close on IE11 with Caret Browsing (F7) enabled IE Edge Bug confirmed Normal
Description

Steps to reproduce

  1. Open an instance of ckEditor on IE11 with enabled Keyboard Navigation (Shortcut F7 or via Menu: File > Keyboard navigation)
  2. Open a Color Select Dialog > More colors dialog
  3. Try to close the dialog window

Expected result

The window should close.

Actual result

The window stays open and an error is logged to the console: The property "removeClass" of an undefined object can not be accessed. colordialog.js, Row: 11, Column: 485

#17026 CKEditor does not work on IE11 IE Bug closed Normal
Description

Open http://ckeditor.com/features with IE 11 or Edge in IE 11 emulation

Unable to get property '1' of undefined or null reference (16, 157)

navigator detection fails detecting ie 11 because rv: test is not done prior to edge regex test

To solve issue : sorry (dont have the source proper variable names) var a=navigator.userAgent.toLowerCase();

if(/rv:([\d\.]+)/.test(a)) {

var d=a.match(/rv:([\d\.]+)/);

} else {

var d=a.match(/edge[ \/](\d+.?\d*)/);

}

#171 Unable to set textfield char width to 20 IE6 IE7 Martin Kou Bug review_failed Low
Description

Hi All,

I had trouble entering "20" to Character Width of Text Field and Columns of TextArea. It simply got missing. I do not know if this is intentionally or a bug.

Your help is highly appreciated,

Henry


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

#1011 Button for signature Confirmed Review+ Artur Formella New Feature closed Low
Description

It would be nice to get a button for signature, like in MW standard toolbar.

#1891 fck_tablecell.html id >< name conflicts Review+ Alfonso Martínez de Lizarrondo Bug closed Low
Description

Low priority.

I noticed that a lot of input controls are not consistent with the ID and the Name. Some examples.

<select id="selWordWrap" name="selAlignment"> <select id="selHAlign" name="selAlignment"> <select id="selVAlign" name="selAlignment"> <input id="txtBackColor" type="text" size="8" name="txtCellSpacing"> <input id="txtBorderColor" type="text" size="8" name="txtCellPadding" />

As you can see here, the ID is the correct one, the name is incorrect.

#2643 Editor right scroll padding in IE IE7 Bug closed Low
Description

When inserting an 100% width element (such as table element) in IE7 there is horizontal padding at the right that seems to correspond to the width of the scrollbar, even though the scrollbar is not visible or needed. I think this is a regression because I havent noticed it prior to fck 2.6.3.

#3427 Correct synctax error of fck_docprops.html Review+ Alfonso Martínez de Lizarrondo Bug closed Low
Description

link: http://www.fckeditor.net/forums/viewtopic.php?f=5&t=13718

In eclipse, editor/dialog/fck_docprops.html file shows errors. For correct the errors,

before - 459 line

                            <select id="selDocType" onchange="CheckOther( this, 'txtDocType' );">
                               <option value="" selected="selected"></option>
                               <option value='<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">'>HTML
                                  4.01 Transitional</option>
                               <option value='<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">'>
                                  HTML 4.01 Strict</option>
                               <option value='<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">'>
                                  HTML 4.01 Frameset</option>
                               <option value='<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">'>
                                  XHTML 1.0 Transitional</option>
                               <option value='<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">'>
                                  XHTML 1.0 Strict</option>
                               <option value='<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">'>
                                  XHTML 1.0 Frameset</option>
                               <option value='<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">'>
                                  XHTML 1.1</option>
                               <option value='<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">'>HTML 3.2</option>
                               <option value='<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">'>HTML 2.0</option>
                               <option value="..." fcklang="DlgOpOther">&lt;Other&gt;</option>
                            </select>

after

                            <select id="selDocType" onchange="CheckOther( this, 'txtDocType' );">
                               <option value="" selected="selected"></option>
                               <option value='&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;&gt;'>HTML
                                  4.01 Transitional</option>
                               <option value='&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.01//EN&quot; &quot;http://www.w3.org/TR/html4/strict.dtd&quot;&gt;'>
                                  HTML 4.01 Strict</option>
                               <option value='&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.01 Frameset//EN&quot; &quot;http://www.w3.org/TR/html4/frameset.dtd&quot;&gt;'>
                                  HTML 4.01 Frameset</option>
                               <option value='&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt;'>
                                  XHTML 1.0 Transitional</option>
                               <option value='&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt;'>
                                  XHTML 1.0 Strict</option>
                               <option value='&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Frameset//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd&quot;&gt;'>
                                  XHTML 1.0 Frameset</option>
                               <option value='&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.1//EN&quot; &quot;http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd&quot;&gt;'>
                                  XHTML 1.1</option>
                               <option value='&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 3.2 Final//EN&quot;>'>HTML 3.2</option>
                               <option value='&lt;!DOCTYPE HTML PUBLIC &quot;-//IETF//DTD HTML//EN&quot;>'>HTML 2.0</option>
                               <option value="..." fcklang="DlgOpOther">&lt;Other&gt;</option>
                            </select>
#3578 Compatibility message in samples states that Firefox 1.5 is supported Confirmed Review+ Alfonso Martínez de Lizarrondo Bug closed Low
Description

The message incorrectly states that the user needs 1.5 or higher but it should be 2.0 or higher.

Trivial fix following

#3852 Disable textarea resizing in webkit Review+ Artur Formella Bug closed Low
Description

Open the Link dialog and set Link type to E-mail. Message Body field can be resized in webkit.

#5650 disabling/enabling SCAYT makes editor to lost its focus Review- Bug closed Low
Description

Steps to reproduce:

Enable SCAYT When toolbar menu is disappear, editor stay without focus on it

#7012 Samples - Languages -fast switching between languages causes Editor to crash IE Opera Bug closed Low
Description

TestCase

  • Open User Interface languages sample (IE6/7 or Opera11)
  • set focus on kombo box with list of languages, but list should be colapsed.
  • Switch fast between languages using cursor keys or mouse scroll

Expected result
Editor should switch between Interface languages

Actual result
When switching from LTR to RTL allignment language, Editor crashes.

Under Opera, console has exception as attached below:

JavaScript - http://ckeditor.t/cke351/_samples/ui_languages.html
Event thread: change
Uncaught exception: TypeError: Cannot convert 'n.element' to object
Error thrown at line 140, column 422 in <anonymous function: destroy>(n) in http://ckeditor.t/cke351/ckeditor.js:
    n.element.clearCustomData();
called from line 24, column 3851 in <anonymous function: destroy>(l) in http://ckeditor.t/cke351/ckeditor.js:
    m.theme.destroy(m);
called from line 12, column 6 in createEditor(languageCode) in http://ckeditor.t/cke351/_samples/ui_languages.html:
    editor.destroy();
called from line 1, column 0 in <anonymous function>(event):
    createEditor( this.value );

Bug does not occur under Firefox - user must confirm switching of language by pressing Enter

#7540 IE8 adds extra space when pasting from word. IE8 IBM Garry Yao Bug closed Low
Description
  1. Open Word document and write "Hello" in it.
  2. Select letters "ell" and copy them.
  3. Go to CKEditor and paste text using "Paste" or "Paste from Word" options.

You will see that IE8 adds extra space at the end of pasted text.

This is also true for the whole word but, with this example, I wanted to exclude the possibility that word boundary is causing it.

#7614 [HC] buttons and textarea go outside editor when it's resized in IE9 IE9 Bug confirmed Low
Description

When resizing editor in languages sample in IE9 textarea and buttons go outside editor. This can be observed when using some locale like Polish, Icelandic, Spanish, Vietnamese, Portuguese or Welsh.

I haven tested this issue for all the languages but it works fine for example in Chinese, Korean, Persian, English, German, Hungarian or in Swedish.

I have set 3.5.3 version because in previous ones I could not see buttons in IE9 at all.

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