﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
10510	Editor should have unique label	Teresa Monahan	Olek Nowodziński	"At present the aria-labelledby element of the editor contains the value ""Rich Text Editor"". This means that if 2 editors are on the same page, there is no way for JAWS users to differentiate between the application landmarks for the editors. The aria-labelledby element should instead contain a unique value for each editor.

One simple way to address this is to include the editor name in the value e.g. ""Rich Text Editor, editor1"", ""Rich Text Editor, editor2"" etc. This can be achieved by replacing: 

{{{
voiceLabel: editor.lang.editor,
}}}

with:
{{{
voiceLabel: [ editor.lang.editor, editor.name ].join( ',' ),
}}}
on line 327 of core/creators/themedui/js.

This is an accessibility requirement for us so is a high priority. Can this please be included in the upcoming 4.1.2 release?"	Bug	closed	Normal	CKEditor 4.1.2	Accessibility	3.0	fixed	IBM	Satya Minnekanti Irina
