﻿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	Marek Lewandowski	"1. With IE in Quirks Mode open an editor with copy formatting, e.g. simply [http://ckeditor.dev/samples/ samples page].

**Expected:**

Editor gets loaded.

**Actual:**

An exception is thrown `Object doesn't support this property or method`.

-------

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	closed	Normal	CKEditor 4.6.2	General	4.6.0	fixed		
