Opened 10 years ago
Closed 9 years ago
#14335 closed Bug (fixed)
IE11 & EDGE: Pasting Numbered list with diff start value from word doc not shown correctly
| Reported by: | Satya Minnekanti | Owned by: | Marek Lewandowski |
|---|---|---|---|
| Priority: | Normal | Milestone: | CKEditor 4.6.0 |
| Component: | Plugin : Paste from Word | Version: | 4.0 |
| Keywords: | ibm | Cc: | chrisgui, Irina |
Description
Steps to reproduce
- Open attached word doc which has numbered list with start value of 6
- Copy & paste the list using Paste from Word dialog
Expected result
List copied & pasted properly & shows start value correctly
Actual result
List pasted ok but start value shown as incorrect it shows start value as 1
Attachments (1)
Change History (5)
Changed 10 years ago by
| Attachment: | Numbered list with start value.doc added |
|---|
comment:1 Changed 10 years ago by
| Component: | General → Plugin : Paste from Word |
|---|---|
| Status: | new → confirmed |
| Version: | 4.5.6 → 4.0 |
comment:2 Changed 9 years ago by
| Milestone: | → CKEditor 4.6.0 |
|---|---|
| Owner: | set to Marek Lewandowski |
| Status: | confirmed → assigned |
This issue will be resolved by #9991.
comment:3 Changed 9 years ago by
It's fixed by #9991.
Fixed with git:f2af0353f8fb20231c7ca6de080c6cad273195eb merged to major.
comment:4 Changed 9 years ago by
| Resolution: | → fixed |
|---|---|
| Status: | assigned → closed |

From what I have checked this problem touches all the browsers and not just the IE. In IE however this issue is visible contrary to other browsers.
Problem can be reproduced from the very beginning. I was pretty sure we have this issue already reported but I haven't found it.
From what I have checked the browser see HTML correctly (Chrome):
When this HTML is pasted into browser it results in Chrome/FF:
in IE
Neither of these results is correct.
Although
startattribute is perfectly valid and allowed in ACF (you can apply it from list properties), it is still removed most likely by paste from word filter.I have tried setting
extraAllowedContent : 'ul[start],ol[start]'but it had no effect. Only settingallowedContent:truegives same visual result in IE as in Chrome and FF. Thanks to disabling ACF thevalattribute stays onlielement. Most likely there are some more strict ACF rules for IE and value attribute in elements.Anyway the
startattribute should not be removed. This is the real issue here.