Bug 1030060 - Regression in Find-In-Page logic due to SelectionHandler change in bug 1011059, r=margaret, r=jchen

This commit is contained in:
Mark Capella 2014-07-16 03:23:05 -04:00
Родитель 9ca2104e4c
Коммит ae94bd1ca7
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -387,6 +387,8 @@ var SelectionHandler = {
*/
_performSelection: function sh_performSelection(aOptions) {
if (aOptions.mode == this.SELECT_AT_POINT) {
// Clear any ranges selected outside SelectionHandler, by code such as Find-In-Page.
this._contentWindow.getSelection().removeAllRanges();
return this._domWinUtils.selectAtPoint(aOptions.x, aOptions.y, Ci.nsIDOMWindowUtils.SELECT_WORDNOSPACE);
}