﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
7842	Selection handles in FF can't be set or removed	daveVW		"If you click (select) an image, table, anchor, ... in FF then the selection handles appear.
Now try to reset the selection using javascript code : 

oEditor.getSelection().reset();

OR

var doc = oEditor.document;
var range = new CKEDITOR.dom.range(doc);
var body = doc.getBody();
range.setStart(body, 0);
range.setEnd(body, 0);
oEditor.getSelection().selectRanges( [range] );

The selection is removed (this can be checked with selection.getSelectedElement), but the selection handles in the wysiwyg area remain.

Also, when trying to select an element using javascript code (oEditor.getSelection.selectElement()), the selection handles do not appear.

I think this is a bug in CKEditor and not in FF because it did work in the previous version FCKEditor."	Bug	confirmed	Normal		General	3.0		Firefox	
