mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1119834 - Text selection action bar is shown on div element containing no text, r=margaret
This commit is contained in:
parent
86b9577269
commit
077ae84b39
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user