﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
16728	[QM] Editor is broken once Copy Formatting is added	Marek Lewandowski		"The problem is caused by [https://github.com/ckeditor/ckeditor-dev/blob/master/plugins/copyformatting/plugin.js#L1053 this line]. Simply there's no underlying querySelectorAll method in QM.

It can be avoided by simply changing function to the following:

{{{
_getScreenReaderContainer: function() {
	if ( CKEDITOR.env.ie6Compat ) {
		// findOne is not supported on Quirks.
		return null;
	}

	return CKEDITOR.document.getBody().findOne( '.cke_copyformatting_notification div[aria-live]' );
}
}}}"	Bug	new	Normal	CKEditor 4.6.1	General	4.6.0			
