mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 765390 - (Part 3) Add ability to call endSelection without attempting to copy text. r=mbrubeck
--HG-- extra : rebase_source : 04d05d7a6d8f19ac816c6faa0709096cce338e62
This commit is contained in:
parent
0dc2b1a7df
commit
11d3041889
@ -1419,7 +1419,7 @@ var SelectionHandler = {
|
||||
startSelection: function sh_startSelection(aElement, aX, aY) {
|
||||
// Clear out any existing selection
|
||||
if (this._active)
|
||||
this.endSelection(0, 0);
|
||||
this.endSelection();
|
||||
|
||||
// Get the element's view
|
||||
this._view = aElement.ownerDocument.defaultView;
|
||||
@ -1590,7 +1590,7 @@ var SelectionHandler = {
|
||||
}
|
||||
|
||||
// Only try copying text if there's text to copy!
|
||||
if (selectedText.length) {
|
||||
if (arguments.length == 2 && selectedText.length) {
|
||||
let contentWindow = BrowserApp.selectedBrowser.contentWindow;
|
||||
let element = ElementTouchHelper.elementFromPoint(contentWindow, aX, aY);
|
||||
if (!element)
|
||||
@ -1685,7 +1685,7 @@ var SelectionHandler = {
|
||||
|
||||
if (!this._start || !this._end) {
|
||||
Cu.reportError("SelectionHandler.showHandles: Couldn't find anonymous handle elements");
|
||||
this.endSelection(0, 0);
|
||||
this.endSelection();
|
||||
return;
|
||||
}
|
||||
|
||||
@ -1765,7 +1765,7 @@ var SelectionHandler = {
|
||||
break;
|
||||
|
||||
case "pagehide":
|
||||
this.endSelection(0, 0);
|
||||
this.endSelection();
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user