Changes between Initial Version and Version 8 of Ticket #16847
- Timestamp:
- Mar 7, 2017, 11:18:25 AM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #16847
-
Property
Status
changed from
new
toclosed
- Property Owner set to Tomasz Jakut
-
Property
Resolution
changed from
to
fixed
-
Property
Status
changed from
-
Ticket #16847 – Description
initial v8 1 While serializing to HTML Word inlines styles to some elements, while leaving classes in others.1 While serializing to HTML, Word inlines styles to some elements, while leaving classes in others. 2 2 3 A `style` element that contains all the styles for given selector is put in `html > head` element of `text/html` clipboard **which is currently not pasted** into CKEditor.3 A `style` element that contains all the styles for a given selector is put in `html > head` element of `text/html` clipboard **which is currently not pasted** into CKEditor. 4 4 5 What we need to do here is to make sure that we check `text/html` dataTransfer for these `style` elements, and inline them into matched elements.5 What we need to do here is to make sure that we check `text/html` dataTransfer to check for these `style` elements, and inline them into matched elements. 6 6 7 One thing to keep in mind that we don't want to inline `mso-` specific styles. At the end it's fine for us to inline even unknown css, as those will be stripped by ACF.7 One thing to keep in mind that we don't want to inline `mso-` specific styles. At the end it's fine for us to inline even unknown css, as it will get stripped by ACF after processing.