﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
9240	Arrows not rendering correctly on menus in high contrast mode	Teresa Monahan		"To reproduce:
- Switch to high contrast mode.
- Open any CKEditor sample and insert a table.
- Right click to view the context menu.
Problem: The right arrow for sub menus is not displaying properly. Instead the unicode value is displayed.

This is due to a missing # in the unicode value.

Line 407 in menu/plugin.js is currently:
{{{
var arrowLabel = '&' + ( this.editor.lang.dir == 'rtl' ? '9668' : '9658' ) + ';';
}}}
It should be:

{{{
var arrowLabel = '&#' + ( this.editor.lang.dir == 'rtl' ? '9668' : '9658' ) + ';';
}}}
"	Bug	closed	Normal	CKEditor 4.0	General	4.0	fixed	IBM	Damian Satya Minnekanti
