Bug 1119834 - Text selection action bar is shown on div element containing no text, r=margaret

This commit is contained in:
Mark Capella 2015-01-20 00:40:41 -05:00
parent 86b9577269
commit 077ae84b39

View File

@ -334,7 +334,10 @@ var SelectionHandler = {
// Double check results of successful selection operation
let selection = this._getSelection();
if (!selection || selection.rangeCount == 0 || selection.getRangeAt(0).collapsed) {
if (!selection ||
selection.rangeCount == 0 ||
selection.getRangeAt(0).collapsed ||
this._getSelectedText().length == 0) {
this._deactivate();
return this.START_ERROR_NO_SELECTION;
}