Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (10101 - 10200 of 11754)

Ticket Summary Owner Type Priority Milestone Component
#12467 Indent on first LI of ordered list breaks the list Bug Normal Core : Lists
Description

CK is deletting all but first list items in a ordered list after some formatting and increase indent.

Steps to reproduce using full demo

1) put this code in source

<ol>
	<li>
	<pre>
test</pre>
	</li>
	<li>
	<p>paragraph 1</p>
	</li>
	<li>item 3</li>
	<li>item 4</li>
	<li>item 5</li>
</ol>

2) go to wysiwig, select first li and increase indent
3) only the first list remains in document

#12468 DNN Styles dropdown Error reading XML file in IE Bug Normal General
Description

Hi there

I recently installed the latest DNN version 7.3.2 and the latest DNN CK editor version 2.00.14.

Whilst trying to customize the Styles dropdown from an XML file as per documentation I get the following error in IE when entering edit mode in the HTML module.

The <STYLES> node cannot be found

Here is the XML file

<?xml version="1.0" encoding="UTF-8"?>

<Styles StylesSetName="CustomStyles">

<Style name="H2_green_heading" element="h2">

<!-- Only add a Class Name to the Element --> <Attribute name="class" value="h2_green_heading" />

</Style>

</Styles>

Works OK in Firefox and Chrome - can you suggest a workaround ?

thanks

#12469 Cursor issue with Safari v7.1 Bug Normal General
Description

If you are the end of any line and press ENTER, the cursor goes to the start position of first line. Reproducible in CKEditor Demo.

#12470 CK Editor Issue in IE 11 in my project Bug Normal UI : Context Menu
Description

Hi,

I have a problem with CK Editor on my project, toolbar is disbaled when i opne in IE 11, but same page when i open in chrome it is working fine.

By creating new project and adding control it works fine with IE 11 but causing issue while adding in existing project.

Can any one please help ...!

Thanks Sree

#12471 Not able to put <li> tag without <ul> Or <ol> Bug Normal General
Description

We are not able to put any <li> tag without <ul> Or <ol> tag. Please help me out for this as this is most important for our templates. this is urgent. I have been googling from last twenty days but still not got any solutions for this. Kindly help me out for this.

#12475 [Safari 7.1+] Toolbar groups have inconsistent borders Bug Normal General
Description

The right border is thiner than the rest.

#12476 IE8 crashes when calling insertHTML on an unordered list Bug Normal General
Description
  1. HTML is as follows:
<ul>
<li>test 1</li>
<li>test 2</li>
</ul>
  1. Select 'test 2'
  2. Execute following js:
var CKEDITOR = parent.window.opener.CKEDITOR;
var editor1 = CKEDITOR.instances.editor1;
editor1.insertHtml('<a href="/test.doc">test 2</a>');
  1. IE 8 crashes running on Windows 7. Works ok for FF & Chrome.

works if the HTML is test 1<br /> test 2<br />

#12477 iOS and Hardware Keyboards Bug Normal Core : Keystrokes
Description

On iOS (V7.1.1) I'm experiencing a problem where when CapsLock is on all future keystrokes come through with the ctrlKey keyboard event flag as true. I have tried multiple keyboards and multiple iPads. Consequently, CKEditor doesn't process them correctly (as I'd expect), but I also can't seem to entirely disable keyboard commands which has resolved the problem for our software outside of CKEditor. I have set both the keystrokes and blockedKeystrokes objects to {} but Y, Z, X, C, and V still cannot be typed when Caps-Lock is on (although that fixes such characters as B which did not work before).

In a nutshell this means externally connected keyboards for iOS don't work with CKEditor when CapsLock is on (due to bad JavaScript event data).

#12478 [IE10] Unstable core/ckeditor/basepathglobal test Task Normal General
Description

Test core/ckeditor/basepathglobal seems to be unstable with dev version.

Builded version is fine.

I've only confirmed it with IE10, but it might occur with other IEs too.

#12481 MathJax does not handle multiple exponents Bug Normal General
Description
  1. Open CKEditor MathJax sample. (i.e. samples/plugins/mathjax/mathjax.html)
  2. Doble click any MathJax widget to edit it.
  3. Replace its source with following formula:
    10^1^2
    

Expected result:
The formula should be transformed correctly, as an example go to online encoder and test it there.

Current result:
The MathJax output is broken.

Additional info:

  1. I'm not sure if it's our problem or issue with the external library?
  2. Experienced with Chrome 37
  3. Also reproduced in CKE 4.3.1
#12482 Uncaught TypeError: Cannot read property 'clearCustomData' of null in Chrome Bug Normal General
Description

After opening an instance of ckeditor in an ajax rendered window, the next time it opens I want to destroy the existing instance but in Chrome it is throwing an exception - "Cannot read property 'clearCustomData' of null in Chrome". I was able to fix this in the minified version of ckeditor.js by adding the if logic I detailed here: http://stackoverflow.com/questions/25034150/ck-editor-uncaught-typeerror-cannot-read-property-clearcustomdata-of-null-i/26022306#26022306

Basically clearCustomData is being called an object that is null, I just added if statements to check if the object exists before calling clearCustomData.

#12483 Pressing enter key moves cursor to beginning of document in Safari 7.1 Bug Normal Core : Keystrokes
Description

With the latest software update on my Mac (OS X 10.9.5), my Safari browser was updated to version 7.1 . Then I went to the ckeditor form to modify a page. When I press the enter key inside the editor, no matter where I am in the document, it returns my keyboard cursor to the beginning of the document.

There are no JavaScript errors in the console log. This problem did not occur in Safari 7.0 . The problem does not occur in my other browsers (Chrome and Firefox).

I can also reproduce the issue at http://ckeditor.com/demo . My co-worker has noticed the same issue.

#12484 DOM is changed outside of editor area Artur Delura Bug Normal CKEditor 4.4.6 General
Description
  1. Open the attached file in Chrome and place the caret into the editable area.
  2. Mark all contents either with Ctrl+A or mouse selection.
  3. Delete the content with backspace or del key.
  4. Press Insert/Remove Numbered List button on the toolbar.

As the result, tag <div>other content</div> following the editable area is turned into a list.

#12485 CKEditor Formatting Issue with Calendar Bug Normal General
Description

We've discovered an issue with an AJAX calendar being hidden by the toolbar, please see the attached. Is there a "fix" for this?

#12487 splitting and wrapping content Task Normal General
Description

Dear Team,

i would like to add bold between the <content></content> then it become

ex:

<para>
<content> some text <bold> Sample_bold </bold> goes here </content>
<para>

what i except is

<para>
<content> some text</content>
  <bold>Sample_bold</bold>
<content> goes here </content>
</para>

i am expecting your Replay

Regards,

Subash Ramadoss

#12488 different unit for font size Bug Normal Core : Styles
Description

I am using your editor to create rich text on a crm form. The rich text can then be rendered on a report produced within sql server reporting services (SSRS). SSRS allows for rendering simple html (see the link below).

I noticed an issue when I used your tool to change the font color and a font size. It produced the following html: <p><strong><em><span style="color:red; font-family:arial,sans-serif; font-size:16pt">Chatham&nbsp;is&nbsp;for&nbsp;beach&nbsp;combers&nbsp;and&nbsp;<span style="font-size:24px">fishermen</span>!</span></em></strong></p>

Notice how the first font size is defined in units of pt and the second font size is defined in units of px?

Interestingly, SSRS supports the font size unit of pt but not px. So when I changed the font size of the word fisherman, it did not render correctly.

Not sure if this was intended or a bug and I was hoping there was a way to set ckeeditor so that it always uses pt and not px. Is this possible? Thanks in advance, Tim Enright

http://msdn.microsoft.com/en-us/library/ff519562.aspx

#12489 Cursor jumps to the end of line in Blink and Webkit Piotrek Koszuliński Bug Normal CKEditor 4.4.6 General
Description
  1. Go to http://ckeditor.com/demo
  2. Clear the contents of the CKEditor
  3. Type the following:
    1. "random text"
    2. hit Shift+Enter to create a BR tag
    3. type the following on the next line "11111 111111111"
  4. Click somewhere in the "1111 111111" line

Result: cursor jumps to the end of the text.

Problem can be reproduced from CKEditor 4.4.4 in Blink and Webkit.

#12491 [Webkit/Blink] Error or incorrect selection restored on removeFillingChar Piotrek Koszuliński Bug Normal CKEditor 4.4.6 General
Description
  1. Clear contents.
  2. Type "xx".
  3. Press left arrow once.
  4. CTRL+B.
  5. Type "yy".
  6. Press CTRL+A.

Selection first covers all text, then it's immediately moved to "x".

Depending on number of letters this may also cause error caused by wrong offsets in removeFillingChar.

#12492 CKE include style font-family with lowercase Bug Normal General
Description

Hi, I found on google that this problem was discused many times - few years and to this time it`s not resolved. Crazy! When I use Google Fonts, then is impossible use font-family names to google API. Google API need strict case sensitive font names. Content with styles font-family can not be lowercase. Please improve it as soon as possible. It is too complicated do it by workaround out of CKE!

#12501 rulePattern does not allow custom elements like <custom-tag> Piotrek Koszuliński Bug Normal CKEditor 4.4.6 General
Description

Custom elements are described here. Due to the rulePattern in filter.js it is not possible to use elements with a minus-character.

A simple solution is to edit the pattern to:

var rulePattern = /^([a-z0-9-*\s]+) ...
#12503 [Blink/Webkit] Incorrect result of select all, backspace/delete Artur Delura Bug Normal CKEditor 4.5.0 Beta General
Description
  1. Open replacebycode sample.
  2. CTRL+A.
  3. Delete/backspace.
  4. Execute following code in console.
    CKEDITOR.instances.editor1.editable().getHtml();
    

Result:

<h1><small><a data-cke-saved-href="http://en.wikipedia.org/wiki/Apollo_11" href="http://en.wikipedia.org/wiki/Apollo_11"></a></small>​{}</h1>

Expected (as on FF):

<p>[]<br></p>

or (if that's going to be much easier to implement):

<h1>[]<br></h1>

(because <h1> was the first block before pressing backspace)

  • #8439, #8440 - should be fixed by patch for this issue,
  • this issue was introduced by fixes for #9998.
#12505 CKEditor copy from word/Excel from other source and paste on editor format not preserving Bug Normal General
Description

While copying from source for example word(Might be any source) with Time new Roman 12 to CKEditor same format is not maintaining

#12506 [Safari] Pastebin does not work if page has user-select:none style Bug Normal CKEditor 4.4.6 General
Description

See https://github.com/ckeditor/ckeditor-dev/pull/131

#12508 divearea form Tomasz Jakut Bug Normal General
Description

I use the divarea plugin. Divarea removes <form>-tags from source in all browsers.

Place a form, with or without input fields, to divarea sample, open the sample and switch to source mode, form is removed.

#12509 Widget's content menu not shown on widget's editables Bug Normal General
Description

Widget contains couple of editables.

When right clicking on widget's editable context menu is not shown. When right clicking non editable part of the widget context menu is shown.

In plugins init definition editor.widgets.add definition init:

this.on( 'contextMenu', function( evt ) {
	evt.data.MyPlugin = CKEDITOR.TRISTATE_OFF;
} );

And in the last lines of plugin init

if ( editor.contextMenu ) 
{
	editor.addMenuGroup( 'MyPlugin' );
	
	editor.addMenuItem( 'MyPlugin', 
		{
			label: editor.lang.MyPlugin.label,
			command: 'MyPlugin',
			group: 'MyPlugin'
		}
	);
}
#12510 CKEeditor toolbar blocking calendar Bug Normal General
Description

Please see the attached JPG. We're having an issue with the CKEditor toolbar blocking a calendar. I have assigned a CSS style to the calendar and changed the z-index but has no affect. Is there a way to adjust the toolbar instead?

Any suggestions, recommendations and examples would be most appreciated.

Thank you in advance.

#12512 Copy & Paste from MS Word is not supportable Bug Normal General
Description

When I copy a content from Microsoft Word containing both images and content and paste it in the ck editor only the content is displaying in ck editor.Image not getting displaying.How can i show images

#12513 Copy & Paste from MS Word is not supportable Bug Normal General
Description

When I copy a content from Microsoft Word containing both images and content and paste it in the ck editor only the content is displaying in ck editor.Image not getting displaying.How can i show images

#12515 Cursor position messed up after inserting image followed by undo Piotrek Koszuliński Bug Normal CKEditor 4.4.6 Core : Undo & Redo
Description

Tested with http://ckeditor.com/demo (which reports v4.4.5) using Safari 7.1 (9537.85.10.17.1).

Steps to reproduce:

  1. Visit http://ckeditor.com/demo.
  2. Type some text, e.g. "foo".
  3. Click "Image" in the toolbar and pick one of the server-side ones.
  4. Type a bit more text directly following the image, e.g. "bar".
  5. Click the "Undo" toolbar button.

After step 5 the text entered last is removed, but the insertion point moves before the first text instead of remaining after the image.

(Attempting Redo at this time also positions the cursor incorrectly, so it seems several snapshots are affected.)

#12517 Support for @mentions - the autocomplete feature New Feature Normal General
Description

Same functionality as for the social media websites. @ key if preceded by space and followed by word character presents a typeahead list of pre-populated usernames that can be selected and inserted to text editor. We can then define a common API between IBM and CKEditor to allow data inter-exchange.

#12518 [IE8 bug] getSelectedText returning empty string when selecting text within an ordered list in a table Bug Normal General
Description

I'm trying to put an anchor tag on a list item embedded in a table. As noted in the summary this bug is happening only in IE8 for me. Works in FF & Chrome. I'm using a custom plugin to get the selected text and set the anchor.

HTML:

<table>
	<tbody>
		<tr>
			<td>
			<ul>
				<li>test1 test</li>
				<li>test2 test</li>
			</ul>
			</td>
		</tr>
	</tbody>
</table>

JS:

		var CKEDITOR = parent.window.opener.CKEDITOR;
		var editor1 = CKEDITOR.instances.editor1;
		var selection = editor1.getSelection();
		var selectedText = selection.getSelectedText();
 
 
		if (selection.getType() == CKEDITOR.SELECTION_ELEMENT) {
		  var selectedContent = selection.getSelectedElement().$.outerHTML;
		} else if (selection.getType() == CKEDITOR.SELECTION_TEXT) {
		  if (CKEDITOR.env.ie) {
		    selection.unlock(true);
		    selectedContent = selection.getNative().createRange().htmlText;
		  } else {
		    selectedContent = selection.getNative();
		  }
		}
#12519 Having labels shown for menus includes "(Selected)" when the menu is open Bug Normal UI : Toolbar
Description

This appears to have been introduced as part of http://dev.ckeditor.com/ticket/11331.

Our use case has a button with a menu that does not have an icon, but only has a text label. It is not a richcombo or anything like that, but makes use of a custom panel.

However, the only way to show the button label is via CSS, as shown in http://stackoverflow.com/questions/8486145/in-ckeditor-how-can-i-add-a-text-label-to-a-button.

Since the button plugin now adds "(Selected)" to the label when it's open, our toolbar gets thrown out of whack with the extra text.

Ideally, this wouldn't be done as an addition to the label, but through some attribute, but I understand the necessity for screen readers and accessibility.

However, we need some way to hide this label from the UI when we are showing the labels themselves.

The solution we currently have is to use

editor.lang.button.selectedLabel = '%1'

which is very, very hacky.

#12522 CKEditor instance is not properly released on destroy Bug Normal General
Description

Hello,

We get the error "TypeError: Cannot read property 'getEditor' of undefined" when creating a new instance of CKEditor.

Please, see the Word document attached for further details.

Possible related bugs: http://dev.ckeditor.com/ticket/12307 http://dev.ckeditor.com/ticket/12482

#12523 Have multiple inline edits with textareas that have the same name Task Normal General
Description

Im trying to have more than one inline texteditors on my page, however they will all have the same name is there a way for me to do this as it only seems to load the editor for the first one. any help would be greatly appreciated.

#12529 Ck Editor in Asp.net Bug Normal Server : ASP.Net
Description

Hi

This is Nagesh, am using CkEditor(3.6.2) in my asp.net application. it is giving two issues

1: While click save button Editor disappearing after saving the data editor is showing., see below images No image "/Users/nagesh/Desktop/ck2.PNG" attached to file:///C No image "/Users/nagesh/Desktop/12345.png" attached to file:///C

2: If we click on Editor footer getting console errors like "Maximum call stack size Exceeded". see below image No image "/Users/nagesh/Desktop/ck1.PNG" attached to file:///C

Thanks Nagesh

#12531 CKEDITOR punctuation issue ~! before a word is typed in a the following way: ~word! Bug Normal General
Description

Might be related to: http://dev.ckeditor.com/ticket/2277

~!word should provide the follwing result ~!word but currently returns ~word!

#12532 CK editor buttons were being overlapped in IE10 Bug Normal General
Description

HI,

I have used CKeditor version 4.2.2 and when the page loads in IE10 the ckeditor buttons were being overlapped. I need to use version 4.2.2 only cannot upgrade to the latest version due to some dependencies. Is there a way to fix this issue.

#12536 CKeditor Dropdowns reloading plugin issue Bug Normal General
Description

When multiple dropdowns are on a same plugin, selecting value for one dropdown reloads the other dropdowns and dropdowns loses its state and selected value.

#12541 File upload plugin Tade0 New Feature Normal CKEditor 4.6.0 General
Description

When you drop a file upload starts and link to the file is created.

#12542 Entire page scrolls down briefly if entire editor is not visible in Chrome Bug Normal General
Description

Reproduced in the demo editor and the nightly build editor.

Take these steps to reproduce:

  • Open a page with an editor in latest Chrome,
  • Resize the editor so that it's either too big to fit on the screen, or position it so the bottom part of the editor is not visible (below the browser window bottom),
  • Position the window scroll so that editor toolbar is fully visible and the bottom is not (as in step 2),
  • Paste some content in,
  • The entire page will quickly jump/flash up and down.

I tried to recreate the same bug in Firefox, but no jump occurred.

#12545 Copying font with zoom level above 100% pastes decimal font sizes Bug Normal General
Description

From Full Featured Demo page:

  1. Select text and set the size to 12.
  2. On the browser (Chrome or Safari) set the zoom level to 110%
  3. Copy Text
  4. Paste text
  5. Inspect the text with your browser and the font size will not be 12 but 11.55828912 or something like that.

Discovered in 4.3 and is reproducible in latest version (4.5)

#12546 Preview tab in docprops dialog is always disabled Piotrek Koszuliński Bug Normal CKEditor 4.4.6 General
Description

This can easily be reproduced on the demo page:

http://ckeditor.com/demo#full-page

Click the docprops icon and you'll see that the preview tab is disabled.

I think that the problem is caused by the code in /plugins/dialog/plugins.js, lines 841ff. This code disables all tabs that do not contain an enabled input element. And the preview tab does not have such an element.

#12548 Inserting a page break hides all text after the break Bug Normal General
Description

I'm using CK editor to allow users to edit the content of a letter. The information is presented on a form in a simple text area.When the submit button is clicked, the page grabs the content of the text area and saves it in a mysql database.

Everything looks ok in the editor and is saved successfully to the database but, on re-opening the editor, everything after the page break is missing.

The html that was saved to the database still contains all of the text, including the page break code and another script that uses the HTML is able to display all of it. This script replaces any page break tags with custom tags and then renders the appropriate page.

Further Info

I've done a little bit of testing and the Page Break button seems to be omitting the closing <div> tag from the page break code that is inserted, resulting in :

<div style="page-break-after: always"><span style="display:none">&nbsp;</span>

*NOTE The missing closing <div> tag

#12549 PageDown key, directly goes to end of the document in internet Explorer Bug Normal General
Description

When page down key is used, the file directly goes to end of the file. This issue only in internet explorer. I checked with the demo page also the same.

#12550 Add CKEDITOR.dtd.main Piotrek Koszuliński Task Normal CKEditor 4.4.6 General
Description

The new tag was added to HTML5 after we updated our DTD the last time:

http://html5doctor.com/the-main-element/

#12551 IE (9,10,11) can not use the buttons(OK, Cancel, X) in Image, Link Popup windows Bug Normal General
Description

IE dev console when click to button(Cancel,X) in Image popup window i got "Access Denied" in line 92

try{a.contentWindow.document}catch(b){a.src=a.src}return a&&new CKEDITOR.dom.document(a.contentWindow.document)},copyAttributes:function(a,b){for(var f=this.$.attributes,b=b
{},c=0;c<f.length;c++){var g=f[c],h=g.nodeName.toLowerCase(),i;if(!(h in b))if(h=="checked"&&(i=this.getAttribute(h)))a.setAttribute(h,i);

i have tried apply commit https://github.com/ckeditor/ckeditor-dev/commit/8eb1a58 but can not fix this issue

#12558 problem on widget_sdk_tutorial_2 example from CKEditor 4 Developer's Guide Bug Normal Documentation & Samples
Description

There is a problem with the widget_sdk_tutorial_2 example.As i followed the steps to develop a widget,actually i can not get the expected result.The problem is when i click the source view after insert a widget(in this example is a <div class="simplebox"),the width attribute which i typed in the dialog is not actually set to the div and the div displays as default.When i change the template to <div class="simplebox" style="width:300px">,it works.So i guess there is a problem in the code:

var width = this.element.getStyle( 'width' );

if ( width ) this.setData( 'width', width );

which is from simplebox/plugin.js.Cause this bug appears in the guide part which is so important for CKEditor new learner (like me),i hope core team can fix this as soon as possible.Cheer up and thank you guys so much for providing us such great editor!

#12563 Font names containing spaces and numbers are not handled well. Bug Normal General
Description

We use CK editor embedded in a web browser control. We also extend the CK predefined font stacks with system fonts. This system font list contains some entry that has space and numbers in its name, for instance 'Bauhaus 93'. We are facing an issue that 'Bauhaus 93' is displayed in the font combobox even if the underlying font is different. We also realized that in the related CK font style an empty string presented instead of the 'Bauhaus 93'. After some investigation we found this on W3Schools: 'If a font name contains white-space, it must be quoted. Single quotes must be used when using the "style" attribute in HTML.'. So, officially every font name that has a white space in its name should be single quoted. In fact, this is not necessary for names that has *no* numbers in its name, for instance 'Courier New' but should be used on font names that *has* number in its name like 'Bauhaus 93'. So, we tried to fix this by putting 'Bauhaus 93' between single quotes.

This is the original font configuration (just a sample): config.font_names = "Arial;Bauhaus 93/Bauhaus 93;Tahoma;Verdana";

This is the modified one according to the W3Shools recommendation: config.font_names = "Arial;Bauhaus 93/'Bauhaus 93';Tahoma;Verdana";

On one hand the font combobox now reports the right font where the cursor is. This is ok, but on the other hand, when we try to assign a font that contains a number just like 'Bauhaus 93' the CK editor somehow removes the quotes and generates this style: <span style="font-family:Bauhaus 93;">text</span> -> No single quotes. This is incorrect and browsers do not handle well. This form would be the correct one: <span style="font-family:'Bauhaus 93';">text</span>

Would you please investigate/fix why CKEditor stripes down the 'Bauhaus 93' and put these types of names without quotes in the HTML source. We are using IE engine because of the webbrowser control.

Additional notes about our investigation. This issue is IE specific and the following javascript code is affected: In the tools.is the function parseCssText there is two lines:

1) temp.setAttribute( 'style', styleText );

2) styleText = CKEDITOR.tools.convertRgbToHex( temp.getAttribute( 'style' )
);

WITHOUT QUOTES: If the styleText variable contains: Bauhaus 93 (*no* single quotes), then the getAttribute in the second line returns with an empty string. So the result is that the style definition created for 'Bauhaus 93' will be empty and later every style matching will say the font is 'Bauhaus'.

WITH QUOTES: If the styleText variable contains: 'Bauhaus 93' (between quotes), the getAttributes works well and the subsequent style matcing gives the right values. This is ok. The problem comes when we apply this style to a text. The quoutes are removed. This is what you need to investigate (The codes I referred works well.). The testing is simple. Just put 'Bauhaus 93' font definition (with single quotes) among the other fonts in the config: This is the full offcial entry for this font: Bauhaus 93/'Bauhaus 93' Note, not just the 'Bauhaus 93' is affected but every other font name that has numbers in its name.

Regards, Zoltan

#12564 Using Table Component Having a Bug Bug Normal Core : Tables
Description

When I Use Table Component and create table using it. I found spaces in source code if i store it in database then it consumes more space so its my request that try to solve this bug.

#12566 onClick event on fileButton causes an error after upload for minified version Bug Normal General
Description

When uploading an image through the Image plugin with a custom filebrowserUploadUrl set, the following code causes an error (Uncaught TypeError: Cannot read property 'getDialog' of undefined on ckeditor.js:689) ONLY with the minified version:

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

        if (dialogName === 'image') {
                var uploadTab = dialogDefinition.getContents('Upload');

                for (var i = 0; i < uploadTab.elements.length; i++) {
                        var el = uploadTab.elements[i];

                        if (el.type !== 'fileButton') {
                                continue;
                        }

                        el.onClick = function() {
                                console.log('click');
                        };
                }
        }
});

The error doesn't occur until after the server replies. This is what the reply looks like (with variables set correctly):

<script type='text/javascript'>window.parent.CKEDITOR.tools.callFunction($ckeditor_func_num, '{$params['url']}');</script>
#12571 Issue with IE11 while operating on CKEditor Bug Normal General
Description

While clicking either of the "update" , "cancel" , "close" button, it is not working properly.

#12572 Problem when I typing Korean In IE, Chrome. Bug Normal General
Description

Hi,

I have problem when I type Korean language.

This problem like this video. Video: https://www.youtube.com/watch?v=lxRgTp3NIJI

I read these tickects http://dev.ckeditor.com/ticket/10414 and http://dev.ckeditor.com/ticket/11545

One More things I have a orther problem: After i change font-size. Ex: 48px. And Now, I type korean language. But it didn't keep this font-size(it should be 48px. But it's seted to default).

You can see it in http://ckeditor.com/demo

Can you suggest me how to fix it?

OS: window 8.1 IE: 11 Chrome: 38.0.2125.104 CKedior: 4.4.5

Thank for reading.

#12573 Show nonprinting characters New Feature Normal UI : Toolbar
Description

A button to toggle showing nonprinting characters, such as space, line breaks and tabs. This is a common feature to many text editors but currently missing in CKEditor.

#12575 wrong french translation for anchor Task Normal UI : Language
Description

In the "Insert link" dialog, the "type : anchor" combo box option has a very wrong french translation. It is written "Transformer le lien en ancre dans le texte", which means "To transform the link in anchor in the text". It doesn't make any sense. The propoer translation should just be "Ancre"

#12589 Link dialog window shows all link type subcategories on first load in Chrome Bug Normal General
Description

In Chrome, whenever we press the link button, the link dialog window appears with all of the different link type subcontrols visible. If we change the link type, then it appears appropriately. This error does not happen in IE nor Firefox.

#12590 link underline color is not changed. Bug Normal General
Description

Hello. This bug is reproduced on your demo.Steps: 1.Create link. 2.Select created link (with mouse e.g.) 3.Change it's text color.

Expected: link underline color is changed. Actual: link underline color is not changed.

Thanks for attention.

#12591 Preserve whitespace in HTML nodes New Feature Normal Core : Parser
Description

If we call setData with HTML like

<p>       abc       def      </p>

It will be transformed into the following structure after fromHtml call

<p>abc def </p>

It would be good to have an option to preserve whitespaces on a certain condition. CKEditor DTD or filter settings seem to be good candidates for keeping this option.

The whitespace trimming logics is situated in parser.onText in htmlparser/fragment.js:

if ( ( !currentNode._.hasInlineStarted || pendingBRs.length ) && !inPre && !inTextarea ) {
  text = CKEDITOR.tools.ltrim( text );
...
if ( !inPre && !inTextarea )
  text = text.replace( /[\t\r\n ]{2,}|[\t\r\n]/g, ' ' );
#12592 No default / calculated font displayed Bug Normal General
Description

Generally speaking, after having selected a font by highlighting text and picking a font from a dropdown, the "onselectionchanged" handler within the font plugin handles updating the dropdown to the selected value when the cursor is in that range.

However, when no font is selected (the browser is rendering the default font in the stylesheet), the font dropdown displays "Font" even when the font that is being rendered is one of the fonts in the dropdown.

Ideally, this dropdown would be up-to-date, even when rendering a "default" stylesheet-applied font.

#12593 CKFinder download multiple files at once New Feature Normal File Browser
Description

I want to be able to download multiple files at once in CKFinder by downloading a folder at once (subfolders included). Also it would be nice to download the currently selected files at once too.

The format of the download could be a zip archive is fine.

If this is already possible, I can't find where/how and I really think it should be a core feature. The plugin system is not very easy to take in and I know I could hack this with a javascript extension but I really want to avoid that if possible.

#12596 Chrome: Multi-byte Japanese chars entry not working properly after line-break Bug Normal General
Description
  1. go to http://ckeditor.com/demo
  2. Change IME(input method editor) to Japanese
  3. in CKE, Shift+Enter
  4. type aa(ああ)

Expected: display ああ Actual: displays あああ

This only happens in Chrome(I tested in Version 37.0.2062.94) and cke enterMode = CKEDITOR.ENTER_BR

#12597 Chrome: Multi-byte Japanese chars entry not working properly after line-break Artur Delura Bug Normal CKEditor 4.4.7 General
Description
  1. go to http://ckeditor.com/demo
  2. Change IME(input method editor) to Japanese
  3. in CKE, Shift+Enter
  4. type aa(ああ)

Expected: display ああ Actual: displays あああ

This only happens in Chrome(I tested in Version 37.0.2062.94) and cke enterMode = CKEDITOR.ENTER_BR

#12600 Insert or Edit Link Bug Normal General
Description

I have problem with the insert or edit link in the Ckeditor. I put this link

http://www.nfe.fazenda.gov.br/portal/consulta.aspx?tipoConsulta=completa&tipoConteudo=XbSeqxE8pl8=

And the ckeditor is cut the link like that: http://www.nfe.fazenda.gov.br/portal/consulta.aspx?tipoC

Someone now about this problem? Thanks.

Ps: Sorry for my english.

#12601 Change Strike Through tooltip into Strikethrough Bug Normal CKEditor 4.4.6 UI : Language
Description

... as this spelling is far more frequent, used in the specifications etc.

PS: Amazing, it's one of the things that has been with us since the beginning of time. It's always kind of scary to change this stuff... ;-)

#12603 Add real Decimal functionality to Numbered Lists New Feature Normal General
Description

Users are able to select from multiple styles of Numbered Lists: Lower Roman, Upper Roman, Lower Alpha, Upper Alpha, Decimal. The last option in the list is misleading; users expect decimaled numbers such as 1.1, 1.2, 1.2.1, etc. to be displayed, however, it is actually integers produced by this feature.

Is it possible to make this feature truly Decimals?

#12606 IE non-breaking space at the end of line. Bug Normal General
Description

I've got an issue with internet Explorer > 10 and Firefox which is when you write "foo " and you let a white space at the end of line and you pass to view html source

the white space is removed. if you let 2 white spaces at the end

like "foo " only one non-breaking space is shown on html source

#12607 Your browser doesn't support video. Bug Normal General
Description

Using Chrome or Safari on a mac.

Insert video. Save and close. Works well.

Re-open to edit and where the video was imbedded is replaced by this text:

Your browser doesn't support video. Please download the file: video/mp4 video/webm

Previously I was using a version 2.x and this was not a problem. We then upgraded to 4.x (I don't recall which one) and now this problem appears.

It is very annoying because to save any edits mandates that I delete the text and re-upload the video.

Thank you.

#12608 Getting unwanted <br type="_moz"> tags in CKEditor source Bug Normal General
Description

We are using IE 11 with CKEditor version 3.6.2 We are getting unwanted br tags with type="_moz" in the source. We will be using the source data in our application. By using this we are generating the pdf. Due the unwanted br tags with type="_moz", we are unable to generate the pdfs.

Previously we were using IE 9 with the same CKEditor version, at that time we don't have any issues. But recently upgraded to IE 11 then the issue starts.

Can you please look into this issue ?

#12609 Magic Line magicline_putEverywhere = true not working after <p> Bug Normal CKEditor 4.4.6 General
Description

We are using config.enterMode = CKEDITOR.ENTER_BR and therefore want to be able to insert a new paragraph after an existing one since hitting Enter won't create one. Magic Line would allow this if it would appear after paragraphs.

According to documentation setting to greedy mode should achieve this: config.magicline_putEverywhere = true; in config.js

It did not, also tried adding to the global and instance in the code as well: CKEDITOR.config.magicline_putEverywhere = true; CKEDITOR.instancesinstanceId?.config.magicline_putEverywhere = true;

None of the three worked. Tested on demo with same results but it probably isn't even running in greedy mode. Reproduced in IE 10, IE 10 under compatibility mode for 9 and 8, Chrome 37 and FF 31.

There is no blacklist being used. CKEDITOR.config.magicline_tabuList = []; was even added to assure no block elements were excluded. It was also verified that CKEDITOR.dtd.$block contained p:1.

Magicline is included properly and does appear in other cases for example between bulletted lists or between bullet list and end of editor. It appears between HRs in the demo as well but we don't have HR allowed in ACF.

It is not known when, or if, this was working between paragraphs as it should for magicline_putEverywhere = true, so listing the latest rev which, is what we are using.

Essentially, it would be nice to be able to add separate sections of text in wysiwyg mode (that translate to paragraph tagged sections) while in CKEDITOR.ENTER_BR mode instead of forcing additional text into the bottom of the preceding <p>. This would allow the desired creation of and separate drag and drop of the individual paragraphs (existing ones and future ones added between/after existing ones) while still enforcing single line returns (<BR> not <P> on user hitting return) within them.

Magic Line should be the straight forward way to achieve this. Without creating a new paragraph, workarounds include select/drag region of text and drop but less user friendly and still remains tied to whatever p it is dropped in, cannot become it's own. A Shift + Enter is also possible to do the <BR> and then switch to default <P> enter mode but is undesirable for us that users need to shit + enter to get a single spaced line break.

#12611 Table plugin allows to delete a table that belongs to protected widget code Bug Normal UI : Widgets
Description

Similar to #11252, but related to tables, not to divs:

Test with a CKEditor that has the widget and table plugins.

Create a widget where the outermost widget element is not a div (like in the simplebox sample) but is instead a table.

For simplicity, this table has a single nested tr and td and in this td there is a div which is the single "editable" of the widget.

Create this widget in the editor and type some text into the editable.

Then right-click this text: The context menu contains menu items for "Delete Table" and "Table Properties", even though you never added a table inside of the editable part of the widget. The table that is referenced by these menu items is the outer widget table, i.e. the table that belongs to the protected widget structure.

Consequently, you can for example select "Delete Table" and this deletes the table from the widget, thus destroying the widget.

#12612 Support for cross domain file uploads Artur Delura New Feature Normal CKEditor 4.5.0 Beta General
Description

Check if Cross domain file uploads (CORS) works and fix it if not.

#12613 Show user that he can not drop on toolbar/ui on dragover Artur Delura New Feature Normal CKEditor 4.5.0 Beta General
Description

Show user that he can not drop on toolbar/ui on dragover.

#12614 Gray out images witch are not fully uploaded Piotr Jasiun New Feature Normal CKEditor 4.5.0 Beta General
Description

Change opacity of the images witch are not fully uploaded.

#12615 Responsive width of images Artur Delura New Feature Normal General
Description

Images should have maximum width 100%.

This ticket is more about investigation than coding: is it work with different editors, widgets, image2 and is it make sense at all.

The idea of such feature appeared when we where looking for solution how to handle big images people upload. Such images may break the content and it is difficult to handle them.

The final solution will be more complex, most probably.

#12617 uploadWidget.replaceWith should use insertHtmlIntoRange Piotr Jasiun Bug Normal CKEditor 4.5.0 Beta General
Description

uploadWidget.replaceWith should use insertHtmlIntoRange and support multiple elements.

#12619 [Chrome] Drop image to the empty document does not work properly. Artur Delura Bug Normal CKEditor 4.5.0 Beta General
Description

Drop image to the empty document does not work properly. Needs fix.

#12620 Deleting list <li> not possible to catch key event Bug Normal General
Description

CKEDITOR.plugins.add( 'auditchanges',

{

init: function( editor ) {

editor.addCommand( 'auditchanges',

{

exec : function( editor ) {

}

});

editor.on('key',function(event) { trackModifications(event,false);});

}

});

Open page and insert list into editor Put your cursor before list and press delete (for backspace put your cursor after list and press backspace)

Result: key event isn't caught.

Problem can be reproduced in CKEditor 4.4.1 and 4.4.5

#12622 CK Edittor Unable To Build WebPages Using Custom HTML Bug Normal General
Description

Hi,

We are using ckeditor for create/edit client pages online,In some cases we our self design and put html code through UI. But with ckedittor we are unable to put our html, because our HTML formatted to adapt ckeditor viewer . As we suggest is there is an option to include custom HTML,like how we doing in source. Please let me know is this possible

Regards, Ajay Peter

#12625 Bug: Pasting image is not working properly in Chrome Bug Normal Core : Pasting
Description

Descriptive summary Pasting image is not working properly in Chrome.

Steps to reproduce 1- Copy an image from any source 2- Open ckeditor in Chrome 3- Paste by hitting ctrl+v

Browser and OS Chrome 38 & 39 (at least) Windows 7

Full report While pasting an image in Chrome, it looks like nothing is happening in CKEditor. I tested it on the demo page and on the nightly without success (tested as 2014-11-04 at 2pm).

When watching what's happening on the DOM/JS, I see that CKEditor paste some Unicode char instead of the image. I went through the javascript code, and I see that CKEditor use contenteditable to paste the clipboard, however Chrome does not support pasting of image for contenteditable, however it works nicely when using clipboardData object in javascript.

#12626 Gravity Forms Bug Normal General
Description

I am creating an auto-responder in Gravity Forms. In the message box with the default wordpress text editor I can add elements from the form such as "Name" or {Name (First):1.3} But - When using CKEditor as my wordpress editor I cannot do this, regardless of whether I am using visual or html

#12627 Ckeditor modify table cell border such as MS Word Bug Normal General
Description

I need to apply border to single table cells. For that I built a plugin. My problem is, I can add a single border, e.g. border-bottom, but if I want to add border-right aswell, border-bottom gets deleted, and I only get the one border per cell.

I want to be able to add multiple borders to one cell. If i click again on e.g. border-bottom, only the border-bottom style should be deleted, and not the entire style.

I hope you cand help me out, it is very important for me.

you find in attached files the plugin.js file and screeeshot of the plugin

#12628 Error bbcode tag [size] and [img] Bug Normal General
Description

I use CKEditor for edit comment use bbcode but tag [size] [img] don't work. Ex: I put [size=72px]abcsize but it send to post is "=72px" And i use [img]domain.com/abc.jpgimg it send to post is "[img]"

Please tell me how to fix it. Thank u very much

#12629 CKEditor 4.3.4 Anchor Issues with IE9 Bug Normal General
Description

Issue 1:

-Highlight a location -Navigate the cursor to another location -Creating an anchor at the new location is ignored and the anchor is

inserted at the previous highlighted location

-This was reproducible multiple times -Without highlighting there were no issues

Issue 2:

-Remove the anchor from one section -Go to Another Section and add in another anchor -Go back to the previous section and insert a new anchor the details of

the previously added anchor is there

This is reproducible in CKEditor Demo. Also I attach video.

#12632 [Blink/Webkit] Impossible or hard to remove format Bug Normal Core : Styles
Description
  1. Open replacebycode sample.
  2. Delete all contents (make sure that paragraph is created - see #12630).
  3. Press the bold button.
  4. Press the remove format button once.
  • Safari: nothing happened. Pressing the button second time finally remove the style
  • Blink: the elements path says that we are in strong, while the bold button not.

Related to #12621.

#12636 Table cell properties - changing width unit doesn't always work Bug Normal General
Description

When going to cell properties and changing the width unit without changing the value, the unit is not saved. Example: We set the width to 100px and close the dialog. Go to the cell properties again and change the unit from pixel to percent and leave 100 for the value. It doesn't succeed. If the value however is changed, the unit also changes successfully.

I think this is caused by the fact that in the dialog definition, the unit itself doesn't have a commit function and the width just takes the value in its own commit function. However, if the width value is not changed, nothing will happen.

#12637 Editor not showing Bug Normal General
Description

hi I installed the editor, but it is not showing and has stopped the wordpress editor showing. My website is http://e-vid.co.uk I have tried disabling all plugins except the ckeditor and nothing shows as an editor. The theme is wordpress 13 up to date version.

#12639 CKEditor control does not work on Azure Bug Normal General
Description

When using CKEditor on Azure, most of the controls that involve a pop up - does not work properly.

IE: the pop up for an image will allow me to enter all of the image data, but when I click "OK" the pop up does not respond. I try to close or cancel and nothing will close the pop up. I have to close the page.

The spell check and link pop ups are also Not working.

I can load the same code on my local server and everything works fine.

I tried to modify the BasePath property to "~/ckeditor" but that does not work either.

#12640 browser with norton plugin inserts HTML codes in the editor fullpage support Bug Normal General
Description

Hi we have a project that is using CKEditor. But we noticed an issue where a colleague of mine is using a mac, safari with a norton extension installed.

everytime we view source in ckeditor, there's a inserted code that links to norton extension.

I also tried in full page editing at http://nightly.ckeditor.com/ and it really shows the issues when you view source.

Please see image sample below.

http://cebuads.com/tempfiles/ckeditor-issue.png

http://cebuads.com/tempfiles/ckeditor-issue.png

#12642 FCKEditor IE-11 issue Bug Normal General
Description

Hello Team,

In one of my ASP.net application i used FCK editor

<%@ Register Assembly="FredCK.FCKeditorV2" Namespace="FredCK.FCKeditorV2" TaNo image "[[Image(" attached to Ticket #12642)]]gPrefix="FCKeditorV2"%> but its not working in IE-11 it's showing html body but not creating iframe inside that and other browser it works fine, without replacing and updating editor how can be resolved such issue.Please help me out it is grateful for me.

Thanks Satish Singh Chauhan

#12643 Bulleted lists copy incorrectly in OSX Chrome Bug Normal General
Description

The new RTE has provided some very nice and interesting features; however, there is a bug I think in copying bulleted lists in Chrome.

If I create the following list:

Bullet 1 Bullet 2 Bullet 3

see what happens if I copy and past these three bullets:

Bullet 1 Bullet 2 Bullet 3

Here's the HTML showing what happens. This is consistent and a huge PIA.

[p]If I create the following list:p

[ul]

[li]Bullet 1li [li]Bullet 2li [li]Bullet 3li

ul

[p]see what happens if I copy and past these three bullets:p

[ul style="font-size: 13.3333330154419px; line-height: 13.8666658401489px;"]

[li]Bullet 1li [li]Bullet 2li [li]Bullet 3li

ul

It happens in all instances, but only with OSX Chrome. Not in Firefox. I can't test it in Safari or under Windows.

#12647 Empty links are always removed Bug Normal General
Description

When I insert content that has a link <a/> with href attribute set, the link is removed. The CKEDITOR.dtd.$removeEmpty settings are ignored. This is a result of a fix for #7894 in fragment.js.

I would like to preserve the empty links but the attribute "data-cke-survive" looks hacky. It is not referenced anywhere else in the project. A cleaner solution would be that the editor checks for nested links instead. Also the scope of the original fix can be limited only to HTML processing for paste event in IE.

#12650 Error Handling Images on IE11 Bug Normal General
Description

Hi.

Searching into your pool of issues, I found the ticket #12551 thas yas closed as Invalid.

We noticed this week that, even being as package 4.4.5, this behavior continues to happen.

It is not possible to edit images using Internet Explorer 11, and only in this environment this occurs.

What is most strange, at firs sight, that I tried to reproduce this into the demo, but the ckeditor does not even appears if I am using IE11.

CKEditor is a great tool and I really hope you could check this soon.

Thanks in advance.

#12653 Shortcode Bug Normal General
Description

Is there any option for shortcodes?

We want to update the existing site with salsforce and booking plug ins but the CkEditor is not allowing it as it outputs <p>[salesforce form="1"]</p>.

Site was custom build in 2010 and there's no version of the CkEditor listed, only Copyright (c) 2003-2011, CKSource - Frederico Knabben.

#12657 Templates cancel Scayt button Bug Normal CKEditor 4.4.8 General
Description

Step 1 - Go here http://ckeditor.com/latest/samples/plugins/toolbar/toolbar.html Step 2 - Click the Scayt Button and "Enable SCAYT" Step 3 - Click the Templates Button Step 4 - Cancel or click X to close Templates Popup without selecting template SCAYT Button in tool bar is disabled and should not be disabled

#12659 Cursor stays after ckdetor textarea loses focus Bug Normal General
Description

This only happens on Google Chrome, can be reproduced at http://ckeditor.com/demo. When you first click inside the textarea, the cursor starts blinking, then if you click outside the textarea at the moment when the cursor was visible, it does not disappear from the textarea as it should. The result is when the user works with a form which has other inputs apart from a ckeditor textare, she may see 2 cursors at the same time and so get confused.

#12661 Table header drop down "First column" is incorrectly capitalised Bug Normal General
Description

When you create a new table, you are presented with a dialog with all the table properties. One of these is "Headers".

The options are:

None First Row First column Both

The third option should be "First Column" not "First column".

Hacky workaround:

CKEDITOR.editorConfig = function( config ) {

    CKEDITOR.on('dialogDefinition', function(ev) {

            var dialogName = ev.data.name;
            var dialogDefinition = ev.data.definition;

            if (dialogName == 'table' || dialogName == 'tableProperties') {

            var infoTab = dialogDefinition.getContents('info');

            // hack to make the drop down element have proper capitals!
            infoTab.elements[0].children[0].children[3].items[2][0] = "First Column";

        }

    }

}

#12664 Code Snippet: Codesnippet instance will insert the code block at the beginning of the editor Bug Normal General
Description

Reported as a comment on the addon's site: http://ckeditor.com/comment/135211#comment-135211

I have a particular bug I'm trying to address, I've just upgraded CKEditor to 4.4.5 mainly to address the Safari 7.1 bug. However, prior to the 4.4.5 release, and now with the latest version, my codesnippet instance will insert the code block at the beginning of the editor occasionally. I get a console error from the main Widget plugin's plugin.js file after clicking "Ok" from the dialog.

Uncaught TypeError: Cannot set property 'ready' of null

and the offender:

finalizeCreation: function( container ) {
	var wrapper = container.getFirst();
	if ( wrapper && isDomWidgetWrapper( wrapper ) ) {
		this.editor.insertElement( wrapper );

		var widget = this.getByElement( wrapper );
		// Fire postponed #ready event.
		widget.ready = true; // I'm raising the error above
		widget.fire( 'ready' );
		widget.focus();
	}
},

The line:

var widget = this.getByElement( wrapper );

Seems like it's not finding the widget by the element.

I'm trying to find a detailed changlog for this plugin specifically, to determine my upgrade procedure, what were the specific changes to this plugin for 4.4.5? Any thoughts on what may be causing this bug?

#12665 Selection is lost on link creation if SCAYT highlights the word Bug Normal General
Description
  1. Enable SCAYT
  2. Type any misspelled word, select it and click link button (should be done before SCAYT highlights the word)

Selection will be lost when SCAYT highlights the word.

#12667 allowedContent = true has no effect Bug Normal General
Description

I'm trying to turn off the Advanced Content Filter as described in these two guides:

http://docs.ckeditor.com/#!/guide/dev_advanced_content_filter

http://docs.ckeditor.com/#!/api/CKEDITOR.config-cfg-allowedContent

However this has no effect.

As an example:

editor.setData('&lt;&lt;--txtAddress1--&gt;&gt;<BR>&lt;&lt;--txtAddress2--&gt;&gt;<BR>');

Results in the html being reformatted to:

<p>&lt;&lt;--txtAddress1--&gt;&gt;<br />
&lt;&lt;--txtAddress2--&gt;&gt;</p>

I do not want any reformatting whatsoever.

I have tried:

var editor = CKEDITOR.replace('oEdit1', {
    allowedContent: true,
    ...
CKEDITOR.editorConfig = function( config ) {
    config.allowedContent = true;

and also the following outside of the config declaration:

CKEDITOR.config.allowedContent = true;

None of them make any difference. I have also tried clearing the cache.

Tested in all browsers including Chrome, IE, Firefox and Safari.

#12668 Only one textarea is possible New Feature Normal General
Description

CKeditor works fine, but it's only possible to have one textarea. If I want to use 2, I have to give another name to the second one instead of "editor1", for exemple "editor2" - and this doesn't work. Is there a solution ?

#12671 Pasting of double byte white space broken when copied from WordPad and into CKEditor in Internet Explorer Bug Normal General
Description
  • Steps to reproduce:
  1. create a html file with the following content: <html><title></title><body> &#12288;1<br> &#12288;&#12288;2<br> &#12288;&#12288;&#12288;3 </body></html>
  2. Open the file in Internet Explorer and copy all 3 lines.
  3. Paste them into WordPad (It's About window says 'Windows 7 Service Pack 1' only, WordPad does not seem to have a 'real' version)
  4. Copy the lines from WordPad again
  5. Paste into a ckeditor text field also in Internet Explorer (I'm currently using http://ckeditor.com/demo#inline for testing)
  • Actual output:
    ??1
    ????2
    ??????3
    
  • Expected output:
     1
      2
       3 
    
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