Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (11401 - 11500 of 11754)

Ticket Summary Owner Type Priority Milestone Component
#14823 IE11 Image Insert Bug Normal General
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

#14824 editor.editable parameter should be optional Bug Normal CKEditor 4.6.0 Documentation & Samples
Description

The element parameter is optional, but the doc comment does not indicate that.

The TypeScript definition is also incorrect (https://github.com/DefinitelyTyped/DefinitelyTyped/blob/54ae3cf3aa6156065d57e242f38e1e86bd0ed9bc/ckeditor/ckeditor.d.ts#L1088).

#14825 [Edge] Dropped support for `setActive` (used to focus editor in some cases). kkrzton Bug Normal CKEditor 4.5.11 General
Description

The parent task is #14819.

The newest version of Edge browser (Edge 38.14393, EdgeHTML 14.14393) dropped support for setActive which is used to focus editor in some cases (e.g. divarea plugin) to prevent unwanted scrolling.

While focus should be probably used in this case, it causes this unwanted scrolling so some workaround should be also applied.

Steps to reproduce

  1. Go to plugins/divarea/samples/divarea.html.
  2. Run CKEDITOR.instances.editor1.editable().find('table').getItem(0).scrollIntoView() in the console.
  3. Run CKEDITOR.instances.editor1.focus() in the console.

To check if editor was focused use document.activeElement.

Expected result

Editor should be focused without scrolling.

Actual result

Editor is focused and scrolled to the top.

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

Edge (Edge 38.14393, EdgeHTML 14.14393)


This issue causes some unit tests fails in:

  • tests/core/config/inline
  • tests/core/dom/documentfragment
  • tests/core/editable/domfix2
  • tests/core/editable/wysiwyg
  • tests/core/editor/title
  • tests/core/filter/editor
  • tests/core/selection/editor
  • tests/core/selection/fake
  • tests/plugins/autoembed/autoembednotifications
  • tests/plugins/floatingspace/floatingspace
  • tests/plugins/image/image
  • tests/plugins/mathjax/mathjax-mock
  • tests/plugins/pastefromword/pastefromword
  • tests/plugins/sourcearea/source
  • tests/plugins/uploadimage/uploadimage
  • tests/tickets/11500/1

At least using focus (instead of setActive) fixes the tests but scrolling problem remains.

#14826 [Edge] Cannot focus widget programmatically at the first try. Bug Normal General
Description

The parent task is #14819.

Steps to reproduce

  1. Go to http://ckeditor.com/demo#widgets.
  2. Run var editor = CKEDITOR.instances.editor2;editor.widgets.getByElement( editor.editable().findOne( 'pre' ) ).focus(); from the console without focusing the editor.

Expected result

The first code snippet widget in the second editor should be focused.

Actual result

The focus/caret is placed on the beginning of the second editor content.

When code is run for the second time or if the editor was focused earlier everything works as expected.

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

Edge (Edge 38.14393, EdgeHTML 14.14393)

This issue causes some unit tests fails in tests/plugins/image2/acf and probably in tests/plugins/image2/justify and tests/plugins/widget/widgetselection.

#14828 Copy and paste from word or excel in ckeditor, the formating is losing Bug Normal Plugin : Paste from Word
Description

Hi Team, We use firfox 38.3.0 version and in our application we have CKEDITOR, the version is 3.6.2.Our end users sends mails to external clients by using CKEDITOR version. Below issues are we are facing

  1. if we select font size as 16, after reaching the email to outlook, the font size shoing as 11.
  2. copy paste from word doc into ckeditor, the format is missing.

we used the "pastefromword" plug-in. defined the setting is config.js file.

config.pasteFromWordPromptCleanup = false;
config.pasteFromWordRemoveFontStyles = false;
config.pasteFromWordRemoveStyles = false;
config.pasteFromWordNumberedHeadingToList = true;

deping up on the data, the copy and paste is working fine(tables, bold, color..etc) . but in most of the cases , the formating is missing in ckeditor and also in outlook after sending the email.

  1. in one case, the font-family is showing as "Symbol" if we copy and paste data from word doc into ckeditor.

any suggestion and solution to resolve formating issue from word doc into ckeditor.

Regards, Ravi Para

#14830 Sourcearea: Keep buttons available while activated New Feature Normal General
Description

When the sourcearea plugin is activated, all CKE buttons that relate to editing the content become disabled.
Instead,
I suggest to change the plugin so that actions can be executed to each button while in this mode.
E.g.:

  • Allow "b" button to place "<b></b>" tags around the selected content.
  • Allow "blockquote" to place "<blockquote></blockquote>" tags around the selected content.

etc...

Also allow it to be configured such that if the BBCode plugin is used with the source plugin, the tags can be changed to something else.

Feel free to ask anything you need.

#14831 [Edge] Fake selection's content bleeds into editable. Tomasz Jakut Bug Normal CKEditor 4.5.11 General
Description

Steps to reproduce

  1. Open http://ckeditor.dev/plugins/placeholder/samples/placeholder.html.
  2. Focus the placeholder widget.
  3. Press Ctrl+B.

Expected result

Widget's content is bolded.

Actual result

Contents of hidden fake selection (sample placeholder placeholder widget) appears in the editable.

Note also the position of cursor after focusing the widget (it's at the end of the editable, but shouldn't be visible at all).

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

Edge 14.14393

#14832 CKeditor's toolbar language to be detected from browser settings Bug Normal General
Description

Steps to reproduce

  1. On OS Windows 7, The system's location and format are set to Chinese. Display language is set to English. In IE, the Internet Options is set to English
  2. Bring up an instance of CKeditor

Expected result == Toolbar is displayed in English

Actual result == Toolbar is displayed in Chinese

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

I tried using navigator.userLanguage, it does not work. I also tried config.AutoDetectLanguage = true, but it does not work.

#14834 Setting to retain br tags before block elements when switching to source mode New Feature Normal General
Description

Steps to reproduce

  1. Add a br element before a block element like a div or p in wyswig
  2. Switch to source and notice that br tag is yanked out and replaced with nbsp;

Expected result

An overridable config setting that can prevent this from happening

Actual result

Doesn't seem overridable

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

To be more clear, this is happening in cleanBogus() inside htmlDataProcessor.js

#14835 Conflict with NOTIFICATION and AUTOGROW plugin Bug Normal General
Description

Steps to reproduce

  1. Install AUTOGROW plugin alone with cdn.ckeditor.com/4.5.10/full-all/ckeditor.js and it will work fine.
  1. Add the NOTIFICATION plugin

Expected result

AUTOGROW should work

Actual result

AUTOGROW don't work when NOTIFICATION plugin is installed.

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

Tested with Firefox 48.02 under Win 7 x64

N.B.: If you need more information just let me know if I forget something.

#14839 Could not use some long hexadecimal code to have the name of the color in the tooltip Bug Normal UI : Skins
Description

Steps to reproduce

  1. add plugin "color button" to CKEditor with Office 2013 theme
  2. Create a form like this :
<form style="margin-left: 80px;">
        <textarea name="editor1" id="editor1" rows="10" cols="80">
        </textarea>
        <script>
            var config = {
                language : 'en',
                height : '500',
                width : '600',
                colorButton_colors : 'FF0000,F00,FFFF00,FF0,00FF00,0F0,0FF,00FFFF'
            }
            CKEDITOR.replace('editor1', config);
        </script>
</form>
  1. Pass your mouse on every color of the color selector

Expected result

The colors are named in the tooltip, by order : Red, Red, Yellow, Yellow, Lime, Lime, Cyan, Cyan

Actual result

The colors are named in the tooltip, by order : FF0000, Red, Yellow, Yellow, Lime, Lime Cyan, 00FFFF

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

tested on IE11 (11.0.9600) and Firefox 47, on Windows 7 plugin color button : office 2013 theme tested on version 4.5.6 too.

#14840 Custom Color List could not use custom color names Bug Normal UI : Skins
Description

Steps to reproduce

  1. add plugin "color button" to CKEditor with Office 2013 theme
  2. Create a form like this :
<form style="margin-left: 80px;">
        <textarea name="editor1" id="editor1" rows="10" cols="80">
        </textarea>
        <script>
            var config = {
                language : 'en',
                height : '500',
                width : '600',
                colorButton_colors : 'Green1/3A9D23'
            }
            CKEDITOR.replace('editor1', config);
        </script>
</form>
  1. Pass you mouse on the color of the color selector

Expected result

The color is named : Green1

Actual result

The color is named : 3A9D23

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

tested on IE11 (11.0.9600) and Firefox 47, on Windows 7 plugin color button : office 2013 theme tested on version 4.5.6 too.

#14841 How to add WooCommerce shortcodes in CKEditor wordpress plugin Bug Normal General
Description

I'm using CKEditor plugin in wordpress, but it is not updated from the last year. Since I'm using WooCommerce plugin, some default shortcodes of WooCommerce disabled in CKEditor. How can I add this shortcodes in CKEditor? You can see disabled options below, http://i.stack.imgur.com/EKhBY.png

Thanks.

#14842 [IE8] Failing plugins/link/link test Bug Normal General
Description

http://tests.ckeditor.dev:1030/tests/plugins/link/link test fails with a following message:

Values should be the same.
Expected: <a href="http://newlink"><em>foo </em>bbb <span contenteditable="false"><a href="aaa">ccc</a></span></a> (string)
Actual:   <a href="http://newlink"><em>foo </em>bbb </a><span contenteditable="false"><a href="aaa">ccc</a></span> (string)
#14843 Cannot use download.ckeditor.com over SSL Bug Normal General
Description

While the CKE "main" download (e. g. http://download.cksource.com/CKEditor/CKEditor/CKEditor%204.5.10/ckeditor_4.5.10_standard.zip) also works over SSL, many plugins (like http://ckeditor.com/addon/language) are hosted on http://download.ckeditor.com.

One cannot simply edit these links to use HTTPS, because the SSL certificate only provides "host3.cksource.com" as CN.

Especially when downloading such plugins using Composer, HTTPS support would be helpful.

Steps to reproduce

curl https://download.ckeditor.com/language/releases/language_4.5.10.zip > /dev/null

Expected result

Successful download.

Actual result

curl: (51) SSL: no alternative certificate subject name matches target host name 'download.ckeditor.com'

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

#14846 ckeditor inserts hidden characters into HTML when using soft return (shift-return). Hex codes: E2 80 8B Bug Normal Core : Editable
Description

When using shift-return to add a soft return to ckeditor (tested on both versions 4.5.3 and the latest 4.5.10), there are hidden characters that are inserted. Their hex codes are:

E2 80 8B

If you insert many soft returns, these hidden characters tend to 'bunch up' all on one line. For instance, if I type the following all with soft returns between each:

asdf sdfg dfgh fghj

then the following hidden hex codes will be inserted after the *last* line (after "fghj"):

E2 80 8B E2 80 8B E2 80 8B E2 80 8B

(i.e. E2 80 8B repeated 4x, one for each soft return)

To duplicate:

1) Go to the online ckeditor demo: http://ckeditor.com/demo

2) Type a few characters (like "asdf") on several lines, using shift-return to do a soft return between each line.

3) Click on the "Source" button to view the HTML. Select and copy an area large enough to more than fully contain the area you typed (make sure to copy a little extra *below* what you typed). Then paste it into a hex editor. There is one online at:

https://hexed.it/

You will see the same hex codes:

E2 80 8B

have been added as strange characters, one set for every soft return.

OS: Windows 7 Browser: Chromium (also same behavior duplicated in Qt's WebEngine, which uses the same source as Chrome)

#14850 eventProcessors for radio and checkbox UI element definitions overwritten Bug Normal UI : Dialogs
Description

https://github.com/ckeditor/ckeditor-dev/blob/master/plugins/dialogui/plugin.js#L1217 https://github.com/ckeditor/ckeditor-dev/blob/master/plugins/dialogui/plugin.js#L1291

At those lines the ui element definition is extended to provide a new onChange function but this causes the default onShow, onHide and onLoad events to be lost.

  type: 'radio',
  items: [['One', 1], ['Two', 2], ['Three', 3]],
  'default': 1,
  onLoad: function() {
    //Never gets called.
  },

Should this be done in the same way as it is for button? https://github.com/ckeditor/ckeditor-dev/blob/master/plugins/dialogui/plugin.js#L952

#14852 Captioned Image drop near list items (ul, ol) Bug Normal General
Description

Steps to reproduce

  1. Paste image into editor
  2. Move and drop image near the list item.
  3. Image will be overlay on text of list items.

Expected result =

Image should have some margin around image according to image alignment.

Actual result

The text is hiding near image if i drop image into list item. Image a overlaping text.

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

#14853 Redesigning link and image menus for simplicity New Feature Normal General
Description

Hi,

I've been looking for a good rich text editor to use in my Rails-based content management systems (used by non-technical users) and although the toolbar can be configured well, I'd really wish there was some thought put to making the menus for links and images more user-centric. They still have a 1990's feel with all the options and input fields, which is really over the head of MOST people. It needs rethinking for simplicity's sake.

For links, there really should be no more than the text, the URL, and whether to open in a new window. People rarely manually type in a URL. They paste URLs into the editor. Realistically it should automatically make into a link if it detects the proper format. The link menu doesn't need a protocol - nobody understands what that is anyway, and when people paste a url, they hardly do so without the protocol. Just have a single string be whatever they want it to be, including the protocol. The tabs in the link menu are cumbersome and most of the options are rarely used by anyone who isn't already technical. At the very least, make an option to simplify the menu with a minimalist version. If the link looks like an email, then it should prepend "mailto:" to the URL when first typing (but not after they remove it again), maybe have a small note saying why. And if the selection looks like any sort of url (whether a link or an email), it should AUTOMATICALLY place that content inside the URL field. Make it easy on the user.

The image menu has the same issues. Why ask for a URL at all? Using links from other sites will break the page if they go down from their original source, so why not assume the user will just save a copy and re-upload? Alignment, width/height, etc should be handled purely by the main editor interface - visually. Shrinking/stretching the image as needed, clicking on the toolbar's alignment buttons to adjust alignment. Minimize the image menu for just uploading (and maybe other minor options). Move everything to a single tab and make it easy on the user.

At the very least this should be a configuration option even to simplify/minimize if you still want to offer the overkill (and IMO outdated) dialog boxes.

The problem with open source software refusing to make decisions about cutting out features/options in the hopes of not excluding anyone from any possible use cases is that it overcomplicates things for most use cases. Development at this day and age is about getting things done quickly and simply, so I'd hope for at least a simple configuration option to provide a very common use case so I don't have to spend a day hacking at the source code. Developers don't have the time for that anymore when customers are expecting a high quality level of products/services.

#14854 [Chrome] Error when using Chrome, Undo Plugin, inline mode Bug Normal General
Description

Steps to reproduce

  1. Force the sample to create an inline editor
  2. insure the undo plugin is enabled
  3. use tool to insert table
  4. click ok

Expected result

Correct insert of table with out error

Actual result

Table inserted, but JS error prevents close of dialog

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

Tested under other browsers, no error occurs.

Other plugins installed (from config): dialogui,dialog,about,a11yhelp,dialogadvtab,basicstyles,bidi,blockquote,clipboard,button,panelbutton,panel, floatpanel,colorbutton,colordialog,templates,menu,contextmenu,div,resize,toolbar,elementspath,enterkey, entities,popup,filebrowser,find,fakeobjects,flash,floatingspace,listblock,richcombo,font,forms,format, horizontalrule,htmlwriter,iframe,wysiwygarea,image,indent,indentblock,indentlist,smiley,justify, menubutton,language,link,list,liststyle,magicline,maximize,newpage,pagebreak,pastetext,pastefromword, preview,print,removeformat,save,selectall,showblocks,showborders,sourcearea,specialchar,scayt, stylescombo,tab,table,tabletools,undo,wsc,lite,base64image,lineutils,widget,chart

JS Stack:

range.js:798 Uncaught TypeError: Cannot read property 'type' of nullbetweenTextNodes

@ range.js:798 normalizeTextNodes @ range.js:818 CKEDITOR.dom.range.createBookmark2 @ range.js:929 createBookmarks2 @ rangelist.js:150 createBookmarks2 @ selection.js:2060 CKEDITOR.plugins.undo.Image @ plugin.js:798 save @ plugin.js:367 (anonymous function) @ plugin.js:76 listenerFirer @ event.js:144 CKEDITOR.event.fire @ event.js:290 CKEDITOR.editor.fire @ editor_basic.js:24 (anonymous function) @ plugin.js:340

#14855 Uploading Task Normal General
Description

My website has CKeditor installed by the developer.

  1. Whenever I try to upload documents, uploading fails

Wish to find out how to fix this problem.

#14857 Adding hyperlink to the text in IE-11 Bug Normal Performance
Description

Steps to reproduce

  1. open a page for editing in IE-11
  2. highlight the text and hyperlink and click save

Expected result

It should add a hyperlink on the highlighted text.

Actual result

Not doing anything.

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

IE-11 however it works fine in Google Chrome.

#14858 drag drop does not allow undo Bug Normal Core : Undo & Redo
Description

Using latest full version of ckeditor ( 4.5.11 downloaded yesterday )

  1. create a left floating div 33% width using a custom style
  2. create a a paragraph inside div
  3. put an image inside above paragraph with custom style of 100% width so it scales to width of 33% div.
  4. than drag and drop image fully or partially outside of div.
  5. select moved image
  6. use ctrl+z or undo button to put image back

Expected result

image should go back to where it was.

Actual result

ctrl+z doesn't undo the change undo button is not available not active

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

windows 7. ckeditor 4.5.11 full version just youtube plugin added.

the drag drop adds style="left:nn; top:nn;" to the dragged element as expected but that doesn't seem to be recorded in the undo list so that ctrl+z or undo button can't do their stuff.

thanks

#14859 Captioned Image Title With Caption New Feature Normal General
Description

Hi team, I want to add title too with image and caption. I customize the DOM and added a title with span tag with figure tag, but when i moving image this will not working as normal ie title is not moving with figure tag. Can you give the proper solution how can i add title with image and caption. I am attaching a sample image what i want with image.Thanks

#14861 In Chrome HTML comments are copied in protected form Bug Normal General
Description

Steps to reproduce:

  1. Open HTML source
  2. Enter a<!--comment-->b
  3. Return to WYSIWYG mode
  4. Select the entire contents of CKEDITOR (ab)
  5. In any way, inspect clipboard contents

Expected result: a<!--comment-->b
Actual result: a<!--{cke_protected}{C}%3C!%2D%2Dcomment%2D%2D%3E-->b

OS: Windows 7 Professional
Browser: Google Chrome 52.0.2743.116 m
CKEditor version: http://ckeditor.com/demo (4.5.11 (Standard))

#14863 Image Upload Not Found Issue Bug Normal Server : PHP
Description

Steps to reproduce

  1. When i run my site with sever ip address and upload image by ckedior, then it give page not found error, when i run same site with domain name and upload image by ckeditor then it is working fine.

So Image upload functionality is not working proper on ip address.

Expected result == Not Found Page

Actual result

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

#14864 Chrome copy/paste issue Bug Normal General
Description

Description

When using chrome and typing something into a new WebMail (Our Company uses ckeditor for mailing) and then wanting to copy and paste information, the copy/pasted information is always pasted at the top of the message instead of where the cursor last was.

It was found that this only affects users that have an email signature setup within ckeditor.

Steps to reproduce

  1. Open a new WebMail (This user must have an email signature)
  2. type a message
  3. Move the cursor below the message
  4. Copy/Paste text from another source like word or notepad
  5. Notice that the pasted text is now at the top of the message

Expected result

The pasted text should be pasted where the cursor is

Actual result

The pasted text is sent to the top of the message before the origonal

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

I am not sure of the version, but this only affects users who use the Chrome web browser.

#14865 In Internet explorer, if the container that holds the ckeditor is draggable, you cannot select text within ckeditor. Bug Normal General
Description

Steps to reproduce

Here is a sample app that demonstrates the behavior. Open it in Internet Explorer 11

http://jsbin.com/soratiraru/1/edit?html,js,console,output

Expected result

I expect the elements within ckeditor to remain selectable/movable.. etc.

Actual result

It tries to drag the object instead of selecting text within.

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

IE 11, CDN Standard version... Jquery... It works fine in Chrome.

#14867 When pasting content from MS Word, text getting stripped. Only occurs in FireFox Marek Lewandowski Bug Normal CKEditor 4.6.0 Plugin : Paste from Word
Description

Steps to reproduce

  1. Open the attached MS Word document
  2. Copy and paste the content to the online CKEditor demo (http://ckeditor.com/demo#standard)
  3. You will notice some text got stripped in the first bullet

Expected result

Content pasted fully

Actual result

Some text stripped

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

This only happens in Firefox. Version of Firefox used for testing is 48.0.2. Pasting from MS Word works in Chrome.

After some investigations, it appears the pastefromword plug-in is stripping the text. When the plug-in's disabled, this problem goes away. We need the plug-in so disabling the plug-in permanently is not an option.

#14868 Jquery effects not working when using ckeditor Bug Normal General
Description

I'm using contenteditable="true" and ckeditor inline to edit my html pages, but when I use ckeditor or just add ckeditor libraries in my page, other jQuery effects (like jQuery tabs) stop working. I tried config.allowedContent = true; but it doesn't help me. How can I fix this issue?

#14869 JS error thrown with Find and Divarea plugins used together. Tade0 Bug Normal CKEditor 4.6.2 General
Description

Steps to reproduce

  1. Open sample which contains Find and Divarea plugins (divrea sample in standard package).
  2. Type New Paragraph added
  3. Open Find dialog and search for New
  4. Close the dialog with close button.

Expected result

No error is thrown.

Actual result

JS error is thrown:
Message:
Firefox: IndexSizeError: Index or size is negative or greater than the allowed amount
Chrome: IndexSizeError: Failed to execute 'setStart' on 'Range': The offset 19 is larger than or equal to the node's length (3).
Line:1933
Path: ckeditor-dev/core/selection.js

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

Problem can be reproduced in all browsers.

#14870 The image2 plugin does not support to add custom css classes to images New Feature Normal UI : Widgets
Description

Steps to reproduce

1.Click on the enhanced image (image2) in the editor. there is no option for the adding the custom css class to the image. (Not talking about the align classes)

Expected result

There need to be a textbox for the extra css classes which will be added to the image

#14871 The Stylesheet classes textfield is disabled for the image caption link in the advanced tab Bug Normal UI : Widgets
Description

Steps to reproduce

1.Click on the enhanced image (image2) in the editor and add a url to the image and select the captioned image checkbox.

2.select the caption text and click the link icon in the editor. 3.in the link dialog you will notice that the target tab is disabled this will enable the advanced tab

editables: {
				caption: {
					selector: 'figcaption',
					allowedContent: 'br em strong sub sup u s; a[!*]'
				}
			},

but you will see the stylesheect Classes textfield is still disabled.

Expected result

The Stylesheet Classes field should be enabled.

#14873 Lost focus in ckeditor, while typing of Bold,Italic, Underline in toolbar(Scayt enabled) Bug Normal General
Description

Steps to reproduce

  1. By default we have enabled scayt in my ckeditor version (4.5.10).
  2. On cmd+B, typed text should be highlighted with tag. Which it does not do as of now. We could able to see the above use case in http://ckeditor.com/demo. When we enable scayt and try to use B| I | U button we do not get the required behaviour.

Expected result

While typing on cmd+B / I / U text should be highlighted with Bold or Italics or underlined

Actual result

Text is not bold/ italics/ underlined while tying oncmd+B / I / U

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

safari, chrome, Mac yosemite, 4.5.11

#14874 Submit on save does'nt work Bug Normal General
Description

Steps to reproduce

I have this simple code

<script src="http://code.jquery.com/jquery-latest.min.js" type="text/javascript"></script> <script type="text/javascript" src="ckeditor/ckeditor.js"></script>

<script type="text/javascript"> window.onload = function() { CKEDITOR.replace ('editor1');

$('#test').submit(function(event){

event.preventDefault(); alert('Saved!');

}) } </script>

<form id="test" method="post">

<textarea id="editor1" name="editor1">&lt;p&gt;Initial value.&lt;/p&gt;</textarea>

</form>

Expected result

When I press on Save button, I have to see the alert 'Saved!'

Actual result

When I press on Save button, The page reload.

I search for this on over the web and a lot of people has the same problem.

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

Windows 10 Chrome Versión 53.0.2785.116 m Microsoft EDGE 25.10589.0.0 ckeditor_4.5.11_full

ThankYou!!

#14875 Changing the font also changes the size I have selected Bug Normal General
Description

Steps to reproduce

  1. Select a font and a size
  2. select another font the size now resets to default. vice versa is also true, where in we select a font and a size and now change the size the font resets to the default

Expected result

The selected font shoud not change.

Actual result

the font-size resets to default on changing the font

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

#14879 <aside> tag is incorrectly parsed and duplicated when pasted in the Source view of CK Editor Bug Normal Core : Parser
Description

Steps to reproduce

  1. Click the Source button in CK Editor, then paste in the following code:
This is a brief test, which I will delete shortly. This is a brief test, which I will delete shortly. This is a brief test, which I will delete shortly. This is a brief test, which I will delete shortly. This is a brief test, which I will delete shortly. This is

<aside style="float: left; width: 10em; height: auto; border-top: solid #000000 0.3em; border-bottom: solid #000000 0.3em; margin: 0.5em 0.5em 0.5em 0.5em;">The quick brown fox jumped over the four score and seven years ago our fathers brought forth upon this continent half a league half a league half a league onward</aside>

a brief test, which I will delete shortly. This is a brief test, which I will delete shortly. This is a brief test, which I will delete shortly. This is a brief test, which
  1. Click the Source button in CK Editor again. The first word of the <aside> content will be moved to its own <aside> object.
  1. Click the Source button in CK Editor again to switch to code view, then without making any changes, click the Source button in CK Editor to toggle back.
  1. The first two words of the original <aside> content now appear within their own <aside> elements, in addition to the remainder of the original <aside> element.

Expected result

CK Editor should display a single paragraph of text with a single left aligned floating <aside> element.

Actual result

CK Editor displays a single paragraph of text with two left aligned floating <aside> elements. The first <aside> element contains the first visible word of the <aside> content "The", and the second <aside> elements contains the remainder of the <aside> content starting with "quick brown fox...". Clicking the Source button repeatedly will continue to successively strip the first word of the original <aside> element & likewise place them into their own <aside> elements.

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

Browser: Firefox 49.0.1 OS: Windows 10, build 14393.187 CK Editor: 4.5.11 (also appears in 4.5.10) CK Editor configured with the default set of 72 plug-ins selected by default when using http://ckeditor.com/builder to create a Custom build of CK Editor.

#14881 Basic styles are not applied in CKEditor Task Normal General
Description

Hi All,

With reference to ticket #14873, When will be the SCAYT plugin be rebuilt with CKEditor? Will the scayt plugin rebuild will be included in the next release of CKEdtitor (4.5.12)?

Thanks

#14882 I want to escape Placeholder while selecting Font Style for CKEditor Contents Task Normal General
Description

I am facing an issue while Converting Arial or any Standard English Labguage Font Type in Hindi Language Font Type.

For Example - In Screenshot 1 I have attached Arial Type Fonts in CKEditor Version 3.5.3 with Placeholders. After adding contents with placeholder. I am selecting all contents by ctrl+A and Selected Hindi Fonts From Dropdown which i attached in Screenshot 2.

then All fonts Converted to Hindi Kruti Dev Fonts for which i have added .ttf, and .eot file in Font Folder and Given Patch For Same in Contenets.css

Actual Result -

Here in Screenshot 3 Placeholder ? Starting and Ending Bracket Converted To Kruit Font..

Expected Result -

I want to skip Placeholder while i am Selecting Hindi Language for English to Hindi Concersion or any Font Type(English or Hindi).

Meanwhile i want to escape Placeholder while selecting Font Style for CKEditor Contents

Browser - Mozila firefox 47

#14885 Special characters are being altered when the language is set to arabic Bug Normal General
Description

Steps to reproduce

  1. Set Arabic in the configuration.
  2. Write in Arabic at first.
  3. Write an English word between () or {}.
  4. write an English word after it directly.

Expected result

The 2nd word should remain outside the brackets.

Actual result

The word is inside the bracket.

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

Browser: Google Chrome
OS: Windows 10

#14888 Editor removing some tags when html content is copied and pasted in source button. Bug Normal General
Description

Steps to reproduce

  1. Click on source button
  2. Copy the content from this link http://www.w3schools.com/icons/tryit.asp?filename=tryicons_awesome

and paste it in source view.

  1. Now close source view and see the view,changes are not reflected completely.

Expected result

It should not delete <i> tags.

Actual result

it deletes all <i> tags from source.

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

All browsers (tested on firefox ,chrome, and Edge), tested on windows OS

#14889 [PR#295] Add image2_altRequired option to image2 config New Feature Normal CKEditor 4.6.0 General
Description

As github user andreyfedoseev points out in pull request #295, option to make the "Alternative Text" field in image2 plugin required would be useful.

#14890 Voice recorder New Feature Normal Server : ASP.Net
Description

Hi,

i want to add mikrophone in the editor, installed recordmpjs plugin but i can't configured. can you help me about this problem? Thanks

#14891 CKFinder 2.6.1 for multiple ckfinder instance configuration in java and javascript Task Normal Server : Java
Description

Currently I am using 2.6.1 Ckfinder java version. I require to set two configuration xml and two ckfinder instance in same page with java version. For that

  1. I have set 2 different config.xml in web.xml

<servlet> <servlet-name>ConnectorServlet</servlet-name>

<servlet-class>com.ckfinder.connector.ConnectorServlet</servlet-class>

<init-param> <param-name>XMLConfig</param-name> <param-value>/WEB-INF/config1.xml</param-value> <param-value>/WEB-INF/config2.xml</param-value>

</init-param> <init-param>

<param-name>configuration</param-name> <param-value>MyConfigration</param-value>

</init-param> <init-param>

<param-name>debug</param-name> <param-value>false</param-value>

</init-param> <load-on-startup>1</load-on-startup>

</servlet> <servlet-mapping>

<servlet-name>ConnectorServlet</servlet-name> <url-pattern>

/ckfinder/core/connector/java/connector.java

</url-pattern>

</servlet-mapping>

  1. I have added 2 MyConfiguration java class. MyConfiguration1.java and MyConfiguration2.java
  1. I have added 2 NewPathBuilder java class for basedir and baseurl configuration NewPathBuilder1.java and NewPathBuilder2.java

Now, how can I use config1.xml for first ckfinder instance and config2.xml for second ckfinder instance at runtime with javascript for java ckfinder version?

#14893 Text Color and styles buttons are visible but stops working after post back in asp.net other styles like Bold, Italic works fine Bug Normal General
Description

Steps to reproduce

  1. Created a div whith contenteditable='true' and apply InLine CkEditor which having Basic style(Bold, Italic), Text Color and styles combo(H1, h2)
  2. It's working fine on pageload but on post back Text Color and styles are visible but stops working.

Expected result

Text Color and styles should working after post back in asp.net

Actual result

Text Color and styles buttons are visible but stops working after post back in asp.net other styles like Bold, Italic works fine

#14894 Editor scrolls to top when focused or when dialog is opened. Tade0 Bug Normal CKEditor 4.7.0 General
Description

Steps to reproduce

These are two issues in fact. First one concerns opening dialog when editor is not focused and second one is the continuation of #14659.

Test Case 1

  1. http://dev.ckeditor.com/ticket/14659#comment:6. Test case from that comment is still reproducible (starting from 4.0.0).

Test Case 2

  1. Open sample page - replacebycode.html or divarea.html
  2. Scroll editor a little bit without focusing it
  3. Open Link dialog

This test case can be reproduced in both classic (starting from 4.4.6) and divarea editor (starting from 4.0.0)

Expected result

Editor should not scroll.

Actual result

In both cases editor will be scrolled to top.

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

Problem can be reproduced in Chrome browser only

#14898 When in a bootstrap modal, input of type text can not be focused Bug Normal General
Description

Steps to reproduce

  1. Place a CKEditor inside a bootstrap modal
  2. Call the modal up
  3. Click on one of the buttons that has a text field on it
  4. Try focus on a text field

Expected result

Text field becomes focused, so I can type a value in it.

Actual result

Can not get the text field to focus and there for can not type in it.

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

OS - Windows 10 Browser - Google Chrome KEditor version - CKEditor 4.5.11 (Full) Plugins - None other that ones that come with the full version

#14899 Google Maps does not work with mediaembed Tomasz Jakut Task Normal CKEditor 4.6.0 Documentation & Samples
Description

Steps to reproduce

  1. Go to http://sdk.ckeditor.com/samples/mediaembed.html.
  2. Try to embed a link for google maps (https://goo.gl/maps/tWtnj or https://www.google.com/maps/).

Expected result

Google maps is embedded inside the editor.

Actual result

Nothing is embedded inside the editor with Failed to fetch content for the given URL..

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

Iframely returns 417 Expectation Failed (Iframely codes). I am not sure if it is the issue with CKEditor or some Iframely misconfiguration after some google maps changes/updates.

#14903 Autolink regexp is not accurate Bug Normal General
Description

As our user points out on a GitHub.

Steps to reproduce

  1. Open editor with autolink plugin.
  2. Paste following link https://prism-break.org/en/projects/cryptpad/

Expected result

Pasted link gets converted into an a element.

Actual result

Link gets pasted as plain text.

In search of the perfect URL validation regex might help with finding a good regexp.

#14904 When we place the cursor on CKEDITOR text, it is showing wrong font size. Bug Normal General
Description

Hi Team,

Our application is siebel. we use the CKEDITOR 3.6.3 version. To move higher version, it is not in our hand. Siegel product is ORACLE one. they have to move latest versions. As per current siebel version, we can't move higher version.

Our issue is : - When we place the cursor on CKEDITOR text(email in our case), it is showing wrong font size(ex : size 8), eventhogh the current text font size is 10. this is giving wrong assumption for us. we use FireFox. any fix or solution from you side.

Regards, Ravi Para

#14906 Missing event beforeDestroy on documentation v4 Bug Normal CKEditor 4.6.0 Documentation & Samples
Description

Hi,

I notice a missing event in the documentation of v4: "beforeDestroy", fired at start of "editor.destroy()".

Steps to reproduce

  1. Go to page http://docs.ckeditor.com/#!/api/CKEDITOR.editor
  2. Check for event "beforeDestroy"
  3. No event displayed

Expected result

Since v4.0, a new event "beforeDestroy" is fired on "editor.destroy()" in addition to "destroy" and "instanceDestroyed". It lacks in the documentation.

Thanks,

ARuben

#14908 Styling is not working in microsoft edge browser Bug Normal Core : Editable
Description

Steps to reproduce

  1. type some text in editor try to apply some style to the entered text.
  2. not applying any style on the selected text.
  3. while performing this scenario getting below error and pointing to the below code

"Unable to get property 'specified' of undefined or null reference"

case "contenteditable": case "contentEditable": return this.$.attributes.getNamedItem("contentEditable").specified?this.$.getAttribute("contentEditable"): null}return this.$.getAttribute(a,2)}:a}

as you can see its not able to get contentEditable

Note: if i add doctype to my page its working fine as mentioned below <!DOCTYPE html>

suspecting that browser is loading the editor in quirks mode no clue why

Expected result

Styling should be applied to the content selected

Actual result

Styling is not getting applied to the content selected

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

Microsoft Edge Windows-10 ckeditor-4.5.7

#14909 Styles combo disabled when a style using multiple classes has them arranged in a non lexicographical order Tade0 Bug Normal General
Description

Steps to reproduce

  1. Open: https://jsfiddle.net/feaxsLcL/
  2. Click on the styles combo.

OR:

  1. Create a minimal ckeditor instance that includes the stylescombo plugin and the styleSet configuration option set to:
[
  { name: 'Marker', element: 'span', attributes: { 'class': 'b-test a-test' } }
]
  1. Click on the styles combo.

Expected result

Styles combo shows one style that's named "Marker".

Actual result

Styles combo is empty and disables itself upon clicking on it.

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

  • With the class order switched the bug does not occur.
  • The (bug-inducing) style is recognized but in this form the ACF filters it out from the styles list.
  • Pasting this snippet:
<p><span class="b-test a-test">Test</span></p>

into the source and switching modes back and forth produces a sorted output like this:

<p><span class="a-test b-test">Test</span></p>
#14910 Special Characters New Feature Normal General
Description

Hi, we are using "CKEditor with Full features". we put in HTML code like '&#9744;' in source view. it is change to the visual section working properly. But, when i change source view it doesn't change to html entities code. And also we are tried below method but, it's not working

CKEDITOR.config.entities = false; CKEDITOR.config.basicEntities = false;

CKEDITOR.config.entities_greek = false; CKEDITOR.config.entities_latin = false;

#14912 Paste should match style of target context when forcePasteAsPlainText is enabled Bug Normal General
Description

Steps to reproduce

  1. Download standard package from http://ckeditor.com/download
  2. Add to config.js: config.forcePasteAsPlainText = true;
  3. Open samples/index.html in browser
  4. Bold the entire paragraph "I'm an instance of CKEditor"
  5. Select and copy the text "Congratulations!"
  6. Click inside the bolded paragraph and press CMD+V (Mac) to paste

Expected result

Pasted text should match the style of the target context (i.e. bold text), since the text is without formatting of it's own (plain text).

Actual result

Pasted text does not respect the formatting of it's new context. The bold element is split up into two at the position of paste.

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

  • Mac OS X 10.9.4
  • Google Chrome 53.0.2785.116 (64-bit)
  • CKEditor 4.5.11 (revision 3876e73)
  • Standard plugins
#14913 Tags are stripped even with "Full HTML" (i.e. without ACF) Tade0 Bug Normal General
Description

Steps to reproduce

  1. Create an editor instance with config option allowedContent set to true.
  2. Switch to source mode, paste the following content:
    <div class="socials">
    <p>Volg ons</p>
    <ul class="social-list">
    	<li><a target="_blank" href="https://www.twitter.com/" title="Twitter"><i class="fa fa-twitter"></i></a></li>
    	<li><a target="_blank" href="https://www.facebook.com/" title="Facebook"><i class="fa fa-facebook"></i></a></li>
    </ul>
    </div>
    
  1. Switch to WYSIWYG mode and back.

Expected result

No modifications done to the data.

Actual result

Data is now as follows:

<div class="socials">
<p>Volg ons</p>

<ul class="social-list">
	<li>&nbsp;</li>
	<li>&nbsp;</li>
</ul>
</div>

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

If you put some text in the bullet points they are preserved, which means only empty inline tags are stripped - this may in fact be a feature rather than a bug.

#14914 Meta tags not populating with existing data Bug Normal General
Description

Steps to reproduce

  1. Navigate to http://sdk.ckeditor.com/samples/fullpage.html and click source button.
  2. Note existence of title and meta tags in source code
  3. Click source button again to return to rendered view
  4. Click document properties button
  5. In general tab of document properties panel, note 'page title' field is populated with data from source
  6. In document properties panel, click meta tags tab
  7. Note meta tags field are not populated with data from source

Expected result

As a user I would expect the Meta Tags fields (Author, Copyright, etc.) to populate with existing data, much as the Page Title, Document Type Heading, etc. do.

Actual result

Meta Tags field do not populate with existing data from source

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

Chrome, Win 7, n/a

#14915 Default font is not taking Bug Normal Core : Styles
Description

Dear All,

I am having trouble to get the default font of CKEditor to Arial. It is taking default font as "Times New Roman" evn though i set it as 'Arial' in config.js file. And I've tried editing every available CSS but no luck. Even If the website uses Arial as its default, the editor seems to forcefully use the "Times New Roman". How do I fix this? I would appreciate any help. Thanks.

Regards, Ravi Para

#14916 equation editor Task Normal General
Description

Hi, I used the eqneditor and It worked fine. But the formula is presented as a picture from the internet as for instance <img alt="\sum" src="http://latex.codecogs.com/gif.latex?%5Csum" />. This does not show up when I'm offline. This could've been awesome if it work offline. Is there any version that works offline?;how i can save equation on my server

#14917 "generateToken()": IE11 support + potential bug Safari 5- Bug Normal General
Description

Hi,

I notice a potential bug in "tools.generateToken()" for Safari 5-:

  • according to "developer.mozilla.org", the typed array 'Uint8Array' is available in Safari 5.1+, and 'window.crypto.getRandomValues' in Safari 3.1+, but the function "tools.generateToken()" creates a 'New Uint8Array' array if 'getRandomValues' exist, assuming that the 2 are available.
  • but according to "caniuse.com", there is no problem because 'getRandomValues' is available since Safari 6+.

I don't have a Safari 3.1 to 5 to test. So I don't confirm the bug.

Solution:

Add the test: " && typeof Uint8Array !== 'undefined' "

Before:

if ( window.crypto && window.crypto.getRandomValues ) {

After:

if ( window.crypto && window.crypto.getRandomValues && typeof Uint8Array !== 'undefined' ) {

Enhancement for IE11:

You can also support MS IE11 crypto librairy: msCrypto.

So, before:

if ( window.crypto && window.crypto.getRandomValues ) {
	randValues = new Uint8Array( length );
	window.crypto.getRandomValues( randValues );
} else {

and after:

var cryp = window.crypto || window.msCrypto;
if ( cryp && cryp.getRandomValues && typeof Uint8Array !== 'undefined' ) {
	randValues = new Uint8Array( length );
	cryp.getRandomValues( randValues );
} else {

Thanks,

ARuben

#14918 inline CKEditor with extraPlugins: 'autogrow' Bug Normal General
Description

Steps to reproduce

  1. textarea input control for multi-line input Or Div with applying texarea class
  2. Applying inline CKEditor with extraPlugins: 'autogrow',

Expected result

We are trying to provide autogrow into this

Actual result

autogrow is not applied Code as below:- CKEDITOR.inline(editableBlocks[i].id, {

extraPlugins: 'autogrow', removePlugins: 'resize', width: 800, autogrow_maxHeight: 1000, autoGrow_minHeight: 500, autoGrow_onStartup: false, enterMode: CKEDITOR.ENTER_BR, fullPage: false

});

#14920 Strikethrough didn't show correctly when font size is changed Bug Normal Core : Styles
Description

Strikethrough didn't show correctly when font size is changed. And this problem only happens in Firefox.

Steps to reproduce

  1. From CKEditor demo page http://ckeditor.com/demo#full, enter some Normal text (Format is Normal and size is 12)
  2. Select the text typed in step 1 and click Strikethrough
  3. Place the cursor in the beginning of the text from step 1
  4. Change font size to 48 and type other text

The strikethrough line appears according to the previous text size. It showed at the bottom of the new text instead of in the middle.

Expected result

The strikethrough line appears in the middle of the text.

Actual result

The strikethrough line appears according to the previous text size. It showed at the bottom of the new text instead of in the middle.

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

This problem only happen in FireFox.

#14928 Undo button remains disabled if resizing an already loaded image as first action Bug Normal General
Description

Steps to reproduce

  1. Load a ckeditor instance which initially has some text and images
  2. Resize an image (1st action) before changing the text.

Expected result

The undo button should be enabled so we can undo the resizing

Actual result

The undo button is disabled. If I then change some text (2nd action), the undo button becomes active and I can undo the 2nd action and then the 1st action.

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

You can see it in the demo, too (http://ckeditor.com/demo)

#14931 AVT: Title for all buttons in CK Editor Toolbar not displayed for Keyboard only User Marek Lewandowski Bug Normal Accessibility
Description

Steps to reproduce

  1. Open nightly build.
  2. Navigate to toolbar by pressing Alt + F10
  3. Navigate to each toolbar button using TAB key (keyboard only user).

Issue: Label for each button(ex: Source) not displayed for Keybaord only user. This is violation of AVT Checkpoint Checkpoint 2.1.1 Keyboard http://www-03.ibm.com/able/guidelines/ci162/keyboard.html

#16339 Can't copy and paste in IE Bug Normal General
Description

Steps to reproduce

  1. I copy some text from anywhere
  2. try to paste it in the textbox using keyboard short cut (ctrl+v)

Expected result

paste it normaly

Actual result

it do nothing , you can paste only by right click-> paste

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

i got the following error SCRIPT16389: Unspecified error. File: ckeditor.js, Line: 110, Column: 1511

#16373 AVT: Title for all icons in CK Editor dialogs not displayed for Keyboard only User Marek Lewandowski Bug Normal Accessibility
Description

Steps to reproduce

  1. Open nightly build.
  2. Open a dialogs that has icons (ex: Smileys)
  3. Navigate to each smiley icon using TAB key (keyboard only user).

Issue: Label for each smiley not displayed for Keybaord only user. This is violation of AVT Checkpoint Checkpoint 2.1.1 Keyboardhttp://www-03.ibm.com/able/guidelines/ci162/keyboard.html

Same issue happens with icons in Special Character dialog, also Lock Ratio & Reset size icons in Image Properties dialog.

This fix should apply to any focusable icons in any dialogs i may have missed mentioning here.

This is same issue as defect #14931

#16383 Strikethrough button is invalid in Moono-lisa kkrzton Bug Normal CKEditor 4.6.0 UI : Toolbar
Description

Actual result

#16393 [Moono-lisa] Toolbar is broken when a row is too long kkrzton Bug Normal CKEditor 4.6.0 UI : Skins
Description

Steps to reproduce

  1. Create a relatively long single-row toolbar.
  2. Load a sample in a browser.
  3. Reduce the width of the window so that the single-row toolbar was split into two rows.

Expected result

Buttons in the second row start on the left side. See moono below:

Actual result

Buttons in the second row start after the last dropdown list.

Note: I do not care that dropdowns have now different width than in moono, for me that's not a problem, I even prefer it.

#16395 minified build missing widgetcommon/icons folder thus showing blank toolbar buttons Bug Normal General
Description

Steps to reproduce

  1. download both full and minified builds for this configuration

http://ckeditor.com/builder/0439a96a750795048b8796566a7b1932

  1. display app with editor & toolbar using full build.
  2. display app with editor & toolbar using minified build.
  3. compare toolbar icons displayed

Expected result

Identical toolbar buttons & icon displayed

Actual result

Full build showed entire toolbar. Minified build showed same buttons but with two missing icons. dev tools identified 404 responses from .../ckeditor-min/plugins/widgetcommon/icons/widgetcommonBox.png .../ckeditor-min/plugins/widgetcommon/icons/widgetcommonQuotebox.png

Identified folder from full download as missing from minified download .../ckeditor-min/plugins/widgetcommon/icons

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

latest version of ckeditor downloaded 10/20/2016 inline editor recent chrome and firefox browsers

#16410 Images loaded in text is not responsive Bug Normal General
Description

Steps to reproduce

  1. load picture in text
  2. when double clicking on picture, a windows opens
  3. fill the word "auto" in the field for 'height'
  4. on clicking on "ok" a error message appears : height must be a number.
  5. also when adding max-width: 140px; in the html-source of the text, and switching to normal view, the added parameters are gone, ...disappeared.

Expected result

These days even a pictures shown on a webpage should be ready for a responsive website by adapting itself to a smaller screen. Thus by getting smaller. For making a picture to get smaller when watching a webpage on a smaller screen, such as a tablet, an iphone... the picture should get smaller automaticaly. For obtaining this, you need to have as css parameters : width:100%; height:auto; max-width:140px; The max-width is the actual real width of the picture.

Actual result

Now it's impossible to add "max-width" because it just disappears in the code. It's not accepted. Also the height in the window-box must accept the word "auto", now it just gives a error by saying that it isn't a number.

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

Browser version doesn't count, it's in your ckeditor codes, it was tested on the demo page !

#16436 Undo doesn't work properly Bug Normal Core : Undo & Redo
Description

Steps to reproduce

  1. Open http://ckeditor.com/demo
  2. Clear all text inside
  3. Type a small text like "test"
  4. Select the "test text and copy it Ctrl + C
  5. Paste the selected text multiple times. At lease 4-5 lines
  6. Undo the input by pressing Ctrl + Z

Expected result

Undo all text

Actual result

The text is not undoed completely only partially

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

Tested on Firefox 49.0.1, Chrome 52.0.2743.116 m (64-bit) and IE 11

#16468 Remove Format not working Properly Bug Normal General
Description

Steps to reproduce

  1. Click Strike Through Option
  2. Enter Some text
  3. Click Remove Format Option
  4. Now Click Enter and Type some text
  5. Strike Through Option is Selected again

Expected result

  1. Strike Through Option should not get selected after Removing Formats

Actual result

  1. Strike Through Option is Selected again and aprat from this option every other option is working fine

Please find the recorded video attached to this link on : http://testing.uandmestaging.com:82/SampleFiles/CkEditor_Problems.swf

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

#16469 All applied formatting (e.g. Font Size/Font Name) back to default when user removes all content. Bug Normal General
Description

Steps to reproduce

  1. Open nightly build ​http://nightly.ckeditor.com/16-09-12-06-07/full/samples/.
  2. Change the style of whole text to: font - Georgia, size - 18 and bold.
  3. Clear all content.

Expected result

Editor should keep applied formatting changes.

Actual result

Removing content removes formatting.

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

#16473 Cannot position cursor with mouse using Edge browser if CKEdit instance is contained inside a draggable DIV Bug Normal Core : Focus
Description

Steps to reproduce

  1. Use Edge browser
  2. Create a DIV with attribute draggable=true
  3. Create a ckedit instance inside the draggable div
  4. Add some text to edit region
  5. click somewhere in the text

Expected result

cursor should move to the clicked position

Actual result

cursor does not move

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

I'm using 4.5.11 and Edge on Windows 10

NOTE: The cursor can be moved using the arrow keys. Just not with the mouse.

#16489 Create SDK samples for Copy Formatting Anna Tomanek Task Normal CKEditor 4.6.0 Documentation & Samples
Description

Extracted from #14707. Adding a user guide would be nice too.

CKEditor SDK changes available in copyformatting-samples branch.

#16506 Notification plugin - move notifications to status bar Bug Normal General
Description

Steps to reproduce

  1. Set Autosave plugin.
  2. Somehow change a text in the editing area.

Expected result

Notifications "Auto Saved" should be shown in the CKEditor status bar BELOW the editing area.

Actual result

Every 25 seconds notifications "Auto Saved" appear OVER the editing area.

It's so annoying I can't work with that.

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

Please move notifications (at least "success", "info" and "progress") to the bottom status bar of the editor. Or give an option to do that. I get absolutely sick when "Auto Saved" popup shows over my editing field every 25 seconds.

#16514 Review API docs for Copy Formatting Anna Tomanek Task Normal CKEditor 4.6.0 Documentation & Samples
Description

We need to review Copy Formatting API docs to ensure that language is readable and understandable.

I already fixed jsDuck tags / structure issues, but left the used language to further review.

For convenience here's the merge commit, so that's where all the comments got merged: https://github.com/ckeditor/ckeditor-dev/commit/757c4a9ecd7a26d11c73f24bf02c26e51fa0e004

#16517 Fix copyformatting cursor in the toolbar Tomasz Jakut Bug Normal CKEditor 4.6.0 General
Description

Currently there's a bug where Copy Formatting icon would show blocking icon when hovered certain parts of Toolbar UI. It should not override the cursor inside the toolbar (meaning that the default cursor should be appplied).

So that we have:

  • nice brush cursor within the editable, where the formatting can be applied
  • blocking cursor outside of the editor
  • unchanged cursor within the toolbar (i suppose it's simply an arrow on all OSes)

See: https://i.imgur.com/60lAwM1.png

#16582 Video detector to add you tube video Bug Normal General
Description

I am using free version of ckeditor in my website. I need to add youtube video through ckeditor toolbar. For that i had downloaded video detector from your website. But after configuration there is some problem occured in plugin toolbar. It had added new options but for adding doc, pdf files. There is some problem in video detector plugin. Please help me how can i add you tube video through ckeditor.

#16586 Missing copy formatting icon for moono-lisa skin kkrzton Bug Normal CKEditor 4.6.0 UI : Skins
Description

There is no new copy formatting icon version dedicated to moono-lisa skin (see attached screenshot).

#16587 [Safari] Failing test in plugins/font/font Bug Normal General
Description

The test is failing in this suite:

tests/plugins/font/font test apply font size over another font size (collapsed selection in empty span)
there is only one span in the editable
Expected: 1 (number)
Actual:   3 (number)

Safari is creating three new spans instead of one: the desired one, surrounded by two empty ones.

<p>x<em><span style="font-size:24px;"></span><span style="font-size:24px">bar</span><span style="font-size:24px;"></span></em>x</p>

Safari version: 10.0.1

#16588 [Safari] Failing test in core/dom/element and plugins/font due to vendor issue kkrzton Bug Normal General
Description

1 test in this suite is failing:

tests/core/dom/element/element test_isIdentical2
different styles formatting
Expected: true (boolean)
Actual:   false (boolean)

It seems that CKEDITOR.tools.normalizeCssText is returning different result just for Safari.

Safari version: 10.0.1

#16590 Failing tests in plugins/widget Marek Lewandowski Bug Normal CKEditor 4.6.0 General
Description

Two tests are failing:

tests/plugins/widget/widgetsintegration test pasting upcasted widgets

HTML after loading element to be upcasted
Expected: /^<p><span aria-label="[a-z]+ widget" class="cke_widget_wrapper cke_widget_(?:inline|block) cke_widget_test(?:_upcasted_pasting|inline|block)" contenteditable="false" (?:data-cke-display-name="[a-z0-9]+" )?(?:data-cke-expando="[0-9]+" )?data-cke-filter="off" data-cke-widget-id="[0-9]+" data-cke-widget-wrapper="1" role="region" tabindex="-1"><span class="cke_widget_element" data-cke-widget-data="%7B%22classes%22%3Anull%7D" data-cke-widget-keep-attr="0" data-cke-widget-upcasted="1" data-widget="test_upcasted_pasting"><i class="upcasted_pasting">foo<\/i><\/span><span class="cke_reset cke_widget_drag_handler_container" style="[^"]+"><img class="cke_reset cke_widget_drag_handler" (?:data-cke-expando="[0-9]+" )?data-cke-widget-drag-handler="1" (?:draggable="true" )?height="\d+" role="presentation" src="[^"]+" title="[^"]+" width="\d+" \/><\/span><\/span>X?(<br \/>)?<\/p>(<div [^>]+>&nbsp;<\/div>)?$/ (string)
Actual:   <p><span aria-label="Widget span" class="cke_widget_wrapper cke_widget_inline cke_widget_test_upcasted_pasting" contenteditable="false" data-cke-display-name="span" data-cke-filter="off" data-cke-widget-id="0" data-cke-widget-wrapper="1" role="region" tabindex="-1"><span class="cke_widget_element" data-cke-widget-data="%7B%22classes%22%3Anull%7D" data-cke-widget-keep-attr="0" data-cke-widget-upcasted="1" data-widget="test_upcasted_pasting"><i class="upcasted_pasting">foo</i></span><span class="cke_reset cke_widget_drag_handler_container" style="background-image:url(http://localhost:1030/apps/ckeditor/plugins/widget/images/handle.png); background:rgba(220,220,220,0.5)"><img class="cke_reset cke_widget_drag_handler" data-cke-widget-drag-handler="1" draggable="true" height="15" role="presentation" src="data:image/gif;base64,R0lGODlhAQABAPABAP///wAAACH5BAEKAAAALAAAAAABAAEAAAICRAEAOw==" title="Kliknij i przeciągnij, by przenieść." width="15" /></span></span><br /></p> (string)
tests/plugins/widget/widgetsrepoapi test widgets.destroy

data after destroying 1st widget
Expected: <p>foo<span aria-label="[a-z]+ widget" class="cke_widget_wrapper cke_widget_(?:inline|block) cke_widget_test(?:_upcasted_pasting|inline|block)" contenteditable="false" (?:data-cke-display-name="[a-z0-9]+" )?(?:data-cke-expando="[0-9]+" )?data-cke-filter="off" data-cke-widget-id="[0-9]+" data-cke-widget-wrapper="1" role="region" tabindex="-1"><em class="cke_widget_element" data-cke-widget-data="%7B%22classes%22%3Anull%7D" data-cke-widget-keep-attr="1" data-widget="testinline" id="widget1">bar1</em><span class="cke_reset cke_widget_drag_handler_container" style="[^"]+"><img class="cke_reset cke_widget_drag_handler" (?:data-cke-expando="[0-9]+" )?data-cke-widget-drag-handler="1" (?:draggable="true" )?height="\d+" role="presentation" src="[^"]+" title="[^"]+" width="\d+" /></span></span>boo(<br />)?</p><div aria-label="[a-z]+ widget" class="cke_widget_wrapper cke_widget_(?:inline|block) cke_widget_test(?:_upcasted_pasting|inline|block)" contenteditable="false" (?:data-cke-display-name="[a-z0-9]+" )?(?:data-cke-expando="[0-9]+" )?data-cke-filter="off" data-cke-widget-id="[0-9]+" data-cke-widget-wrapper="1" role="region" tabindex="-1"><div class="cke_widget_element" data-cke-widget-data="%7B%22classes%22%3Anull%7D" data-cke-widget-keep-attr="1" data-widget="testblock" id="widget2">bam</div><span class="cke_reset cke_widget_drag_handler_container" style="[^"]+"><img class="cke_reset cke_widget_drag_handler" (?:data-cke-expando="[0-9]+" )?data-cke-widget-drag-handler="1" (?:draggable="true" )?height="\d+" role="presentation" src="[^"]+" title="[^"]+" width="\d+" /></span></div> (string)
Actual:   <p>foo<span aria-label="Widget em" class="cke_widget_wrapper cke_widget_inline cke_widget_testinline" contenteditable="false" data-cke-display-name="em" data-cke-filter="off" data-cke-widget-id="1" data-cke-widget-wrapper="1" role="region" tabindex="-1"><em class="cke_widget_element" data-cke-widget-data="%7B%22classes%22%3Anull%7D" data-cke-widget-keep-attr="1" data-widget="testinline" id="widget1">bar1</em><span class="cke_reset cke_widget_drag_handler_container" style="background-image:url(http://localhost:1030/apps/ckeditor/plugins/widget/images/handle.png); background:rgba(220,220,220,0.5)"><img class="cke_reset cke_widget_drag_handler" data-cke-widget-drag-handler="1" draggable="true" height="15" role="presentation" src="data:image/gif;base64,R0lGODlhAQABAPABAP///wAAACH5BAEKAAAALAAAAAABAAEAAAICRAEAOw==" title="Kliknij i przeciągnij, by przenieść." width="15" /></span></span>boo</p><div aria-label="Widget div" class="cke_widget_wrapper cke_widget_block cke_widget_testblock" contenteditable="false" data-cke-display-name="div" data-cke-filter="off" data-cke-widget-id="0" data-cke-widget-wrapper="1" role="region" tabindex="-1"><div class="cke_widget_element" data-cke-widget-data="%7B%22classes%22%3Anull%7D" data-cke-widget-keep-attr="1" data-widget="testblock" id="widget2">bam</div><span class="cke_reset cke_widget_drag_handler_container" style="background-image:url(http://localhost:1030/apps/ckeditor/plugins/widget/images/handle.png); background:rgba(220,220,220,0.5)"><img class="cke_reset cke_widget_drag_handler" data-cke-widget-drag-handler="1" height="15" role="presentation" src="data:image/gif;base64,R0lGODlhAQABAPABAP///wAAACH5BAEKAAAALAAAAAABAAEAAAICRAEAOw==" title="Kliknij i przeciągnij, by przenieść." width="15" /></span></div> (string)

These tests are failing only if the default language of a browser is not English (e.g. Polish). In that case, the regular expression for [aria-label] is failing (it expects "<name> widget", but in Polish the phrase is "Widget <name>").

#16592 jQuery adapter is not included in the built "Source (Big N’Slow) " zips Wiktor Walc Bug Normal General
Description

Steps to reproduce

  1. Click the Customize & Download CKEditor
  2. Check "Source (Big N’Slow)"
  3. Click Download CKEditor

Expected result

There should be an "/adapters" directory with "jQuery.js" unminified.

Actual result

Nothing is included.

#16593 IE11 regular pasting doesn't work Marek Lewandowski Bug Normal CKEditor 4.6.0 Plugin : Paste from Word
Description

IE11 regular pasting doesn't work

  1. Open an editor instance with new pastefromword implementation in IE11.
  2. Set the content using source button to the following:
<h1>Hello world!</h1>

<ol>
	<li>dsa</li>
</ol>

<p>I&#39;m an instance of <a href="http://ckeditor.com">CKEditor</a>.</p>
  1. Press ctrl + x.
  2. Press ctrl + v.

Expected result

Content gets pasted.

Actual result

Nothing happens.

Important notes

It happens only on Windows 7 IE11 - I've tested it with Windows 10 IE11 and it's fine there.

Also the bug comes 100% from new PFW, as if you disable the plugin it works OK.

#16597 [IE9] Unstable copyformatting tests kkrzton Bug Normal CKEditor 4.6.0 General
Description

Unit tests for copyformatting plugin are unstable.

In about 50% runs TCs fails with Unable to get value of the property 'appendChild': object is null or undefined producing BROKEN run. It is caused by this line https://github.com/ckeditor/ckeditor-dev/blob/major/plugins/copyformatting/plugin.js#L81 - it seems like doc.getBody().$ may not be initialized).

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

Checked on IE9.

#16600 Editor may be assuming presence of editable too optimistically. Marek Lewandowski Bug Normal CKEditor 4.6.1 General
Description

Steps to reproduce

Sometimes in Blink and Webkit browsers when dealing with multiple editors you may encounter a situation where editable is not present yet.

URI: core/dom/element.js
Line: 1986

Code: if ( editable.equals( this )
editable.contains( this ) ) {

Expected result

No error should be thrown.

Actual result

In these rare cases error might get thrown.

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

Problem occurs in Blink and Webkit browsers and simple null check should do the trick.

#16602 Colors copy paste not working Bug Normal Plugin : Paste from Word
Description

I have the latest version of CK editor. I am copy pasting from word to the editor. I have the text like this

[Bold] The [Red] [Blue] [Large text] [yellow Highlighted]

when I pasted it to the editor the colors and font sizes are lost.

I set the alloweedContent to true pastefromwordremovestyle = false pasteFromWordRemoveFontStyles = false;

also removed the default styles from content file and still not working.

can you help please.

IE10

#16606 Reuse key labels for a11yhelp for keyboard tooltips Wiktor Walc Task Normal CKEditor 4.6.0 General
Description

With #10015 we some new entries for keys localization. Now as @Anna points out key localization is already defined in a11yhelp plugin.

Our core reuses just a subset of keys available in a11yhelp, so adding all of them would increase the basic package significantly. Let's try to keep it DRY and reuse a11yhelp key labels so that our translation contributor does not need to do the same job twice.

#16607 Focus issue when Copy Formatting and Divarea plugins are enabled Tomasz Jakut Bug Normal CKEditor 4.6.0 General
Description

Steps to reproduce

  1. Open page with two editors with divarea and copyformatting plugins enabled.
  2. Click inside first editor.

Expected result

The first editor is focused.

Actual result

The second editor is focused.

#16623 Contents in source modal window diappears Bug Normal General
Description

We are using CKEditor 4.5.11, this issue happens in chrome browser only. In CK on Source modal window paste content like below:

<style type="text/css">.button { background: Silver; border: 2px solid rgba(33, 68, 72, 0.59); color: rgba(0, 0, 0, 0.55); padding : 5px 5px 5px 5px;

}

.buttonOff { background: Silver; border: 2px solid rgba(33, 68, 72, 0.59); color: rgba(0, 0, 0, 0.55); } .buttonOff:hover {

background: #1cafd9;

} #mid{ height: 350px; overflow-y: auto; } .mid{ align:left; } .imgcol{ width: 6%; } table{ width:100; } .txtcol{ width: 10.5%;font-family: 'Segoe UI' , Tahoma, Geneva, Verdana, sans-serif; font-size: 10px; } </style>

When we again go to Source modal window contents in modal window disappears.

#16624 [PFW] Improve integration with Color Button plugin Marek Lewandowski Bug Normal CKEditor 4.6.1 Plugin : Paste from Word
Description

New PFW implementation puts font background as span with background css property. It's not handled by any of our features (colorbutton in particular), and therefore ACF strips it in the process.

If we'd set it as span background-color everything would work OK.

Additionally we should respect `config.colorButton_backStyle`, that way it will always use a proper style.

  1. Open PFW full manual test case.
  2. Open any document with font background in Word (e.g. last two lines in ckeditor-dev/tests/plugins/pastefromword/generated/_fixtures/Fonts/Fonts.docx).
  3. Select some text with background in Word.
  4. Copy it.
  5. Paste into the manual test editor.

Expected: Pasted rich text preserves text background.

Actual: Background gets removed.

Reproduced on Chrome @ Win10.

#16626 [PFW] Add support for config.coreStyles_* properties Bug Normal Plugin : Paste from Word
Description

With 4.6.0 we've broken integration with config.coreStyles_*. However we want to keep support for this.

For an example on how it should work, go to: pastefromword/manual/removedclasses manual test.

#16639 Make callback parameter in ajax.post optional Marek Lewandowski Task Normal CKEditor 4.6.1 General
Description

While building JsDuck produces following warning:

Warning: /path/to/dev/ckeditor-dev/plugins/ajax/plugin.js:137: Optional param followed by regular param callback

We need to make callback parameter also optional, it's enough to modify plugin's internal post method, and just conditionally call callback.

#16644 Make it easier for users to learn on how to style widgets Tade0 Task Normal CKEditor 4.6.0 Documentation & Samples
Description

I just spend a good 5 minutes (knowing where to search more or less) to find how am I supposed to define styles for widgets.

Suggestion:

#16647 No response from CKSource Task Normal General
Description

I want to know if the company responds to people?

I've tried e-mailing and using the 'online talk to sales team' and got no response. I tried to place an order but their system insists I enter a VAT number. Our company is example and doesn't have one. I tried the on-line contact form, and had no response to that. I've checked our spam.

In my original e-mail I wanted to know this:

Can you clarify the difference between the basic and professional version of CKFinder? We have looked at it and are considering purchasing it.

We have one website app we want to use it on, but use different subdomains for development and testing, so the developer uses dev.oursite.com and we have test.oursite.com as well as our app.oursite.com for example.

Does this com under the single website? I guess it depends also on whether you have something encrypted to ensure it can only work on one specified domain?

#16661 CKEditor 4 browser Context Menu On Ctrl not working with Firefox browser Bug Normal Core : Keystrokes
Description

CKEditor have very useful option for showing browser internal context menu with Ctrl button, instead of CKEditor right-click menu, here is option:

config.browserContextMenuOnCtrl = true;

This feature works well in Google Chrome, but not working with Firefox browser. Can you fix this feature for Firefox browser too?

#16675 Copy formatting - tables issue Tomasz Jakut Bug Normal CKEditor 4.6.2 General
Description

Steps to reproduce

  1. <h2 style="text-align: center;"><span style="font-family:Arial,Helvetica,sans-serif">CONSOLIDATED STATEMENTS OF CASH FLOWS&nbsp;</span></h2>
    
    <p style="text-align: center;"><span style="font-family:Arial,Helvetica,sans-serif">(in millions of $)</span></p>
    
    <table cellpadding="3" cellspacing="1" style="height:80px; width:800px">
    	<tbody>
    		<tr>
    			<td style="background-color:#eeeeee; text-align:center; width:436px"><span style="font-size:14px"><span style="font-family:Arial,Helvetica,sans-serif"><strong>INVESTING ACTIVITIES</strong></span></span></td>
    			<td style="background-color:#eeeeee; text-align:center; width:96px"><strong><span style="font-size:14px"><span style="font-family:Arial,Helvetica,sans-serif">Q1 2015</span></span></strong></td>
    			<td style="background-color:#eeeeee; text-align:center; width:95px"><span style="font-size:14px"><span style="font-family:Arial,Helvetica,sans-serif"><strong>Q2 2015</strong></span></span></td>
    			<td style="background-color:#eeeeee; text-align:center; width:92px"><span style="font-size:14px"><span style="font-family:Arial,Helvetica,sans-serif"><strong>Q3 2015</strong></span></span></td>
    			<td style="background-color:#eeeeee; text-align:center; width:92px"><span style="font-size:14px"><span style="font-family:Arial,Helvetica,sans-serif">Q4 <span style="display:none">&nbsp;</span><strong>2015</strong></span></span></td>
    		</tr>
    		<tr>
    			<td style="width:436px">Purchases of property and equipment</td>
    			<td style="width:96px">1,841</td>
    			<td style="width:95px">1,195</td>
    			<td style="width:92px">1,456</td>
    			<td style="width:89px">1,980</td>
    		</tr>
    		<tr>
    			<td style="width:436px">Acquisitions, net of cash acquired, and other</td>
    			<td style="width:96px">84</td>
    			<td style="width:95px">105</td>
    			<td style="width:92px">87</td>
    			<td style="width:89px">107</td>
    		</tr>
    		<tr>
    			<td style="width:436px">Sales and maturities of marketable securities</td>
    			<td style="width:96px">1,431</td>
    			<td style="width:95px">1,045</td>
    			<td style="width:92px">1,765</td>
    			<td style="width:89px">1,823</td>
    		</tr>
    		<tr>
    			<td style="width:436px">Purchases of marketable securities</td>
    			<td style="width:96px">2,076</td>
    			<td style="width:95px">1,122</td>
    			<td style="width:92px">1,587</td>
    			<td style="width:89px">1,290</td>
    		</tr>
    		<tr>
    			<td style="width:436px">Net cash provided by (used in) investing activities</td>
    			<td style="width:96px">2,570</td>
    			<td style="width:95px">1,377</td>
    			<td style="width:92px">987</td>
    			<td style="width:89px">1,560</td>
    		</tr>
    	</tbody>
    </table>
    
    <p>&nbsp;</p>
    
    <table cellpadding="3" cellspacing="1">
    	<tbody>
    		<tr>
    			<td>INVESTING ACTIVITIES</td>
    			<td>Q1 2016</td>
    			<td>Q2 2016</td>
    			<td>Q3 2016</td>
    			<td>Q4 2016</td>
    		</tr>
    		<tr>
    			<td>Purchases of property and equipment</td>
    			<td>1,841</td>
    			<td>1,195</td>
    			<td>&nbsp;</td>
    			<td>&nbsp;</td>
    		</tr>
    		<tr>
    			<td>Acquisitions, net of cash acquired, and other</td>
    			<td>84</td>
    			<td>105</td>
    			<td>&nbsp;</td>
    			<td>&nbsp;</td>
    		</tr>
    		<tr>
    			<td>Sales and maturities of marketable securities</td>
    			<td>1,431</td>
    			<td>1,045</td>
    			<td>&nbsp;</td>
    			<td>&nbsp;</td>
    		</tr>
    		<tr>
    			<td>Purchases of marketable securities</td>
    			<td>2,076</td>
    			<td>1,122</td>
    			<td>&nbsp;</td>
    			<td>&nbsp;</td>
    		</tr>
    		<tr>
    			<td>Net cash provided by (used in) investing activities</td>
    			<td>2,570</td>
    			<td>1,377</td>
    			<td>&nbsp;</td>
    			<td>&nbsp;</td>
    
  2. http://ckeditor.com/latest/samples/index.html
  3. Paste the code in source mode and follow the gif (copy formatting from Q3 to Q4)

Expected result

Actual result

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

#16678 format of pasted text from word is not showed correctly in the toolbar Bug Normal UI : Toolbar
Description

Steps to reproduce

  1. type text in ms word and format it
  2. copy the formatted text and paste it in ckeditor with or without paste from word function
  3. now set cursor in the pasted text

Expected result

the toolbar (format buttons like font style and size) should show the correct format that was selected in word

Actual result

the toolbar still shows the ckeditor default format

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

  • all browsers
  • ckeditor 4.6
  • no additionaly installed plugins

the html code of the example:

<span style="font-size: 36pt;"><span style="color: red;"><span style="line-height: 107%;"><span style="font-family: &quot;Arial&quot;,sans-serif;">This is a Format Test</span></span></span></span>
#16679 Form saving problem on SSL Bug Normal General
Description

Steps to reproduce

  1. Make some (not only one) ckeditor area on a https:// website. Insert photo inside all area. Try to save the form.

Actual result

403 Forbidden - You do not have permission to access this document.

I try with or without CKEDITOR.basePath and CKEDITOR.config.baseHref. also with CKEDITOR.config.removePlugins = 'scayt';

When it is working

  1. It is worked very well before we change to https from http. Same code.
  2. If I write only text inside the ckeditor area, it is saving well!
  3. If I turn off all ckeditor area binding except one, and try to save the very same html code but from pure html area without ckeditor overwrite, it is saving perfect.

So I THINK there is some postprocessing inside the ckeditor, when I push the submit button, and that is not working with https:// . Perhaps hardcoded http or whatever.

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

chrome latest, tested on ckeditor 4.5.3, 4.5.11, 4.6 both.

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