﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
13093	[Webkit/Blink] Paste From Word's conflict with the paste filter	Piotrek Koszuliński	Piotrek Koszuliński	"On Webkit and Blink paste filter is set to semantic-content by default.

It means that every external paste will be stripped from classes and styles. And this means that PFW's options like PFWKeepStyles stop working.

We could require adjusting paste filter's options with code like:

{{{
editor.on( 'instanceReady', function( evt ) {
    if ( editor.pasteFilter )
        editor.pasteFilter.allow( '*(*)[*]' );
} );
}}}

But this basically disables the paste filter which we need on Webkit and Blink for external pasting due to the awful mess that these browsers do in HTML.

So the only solution I can think of now is to disable the paste filter if PFW was executed for that paste."	Bug	closed	Must have (possibly next milestone)	CKEditor 4.5.0 Beta	General	4.5.0 Beta	fixed		
