зеркало из https://github.com/mozilla/pjs.git
Bug 388079 - Deleting multiple cookies deletes wrong ones and/or not all selected. r=ttaubert
This commit is contained in:
Родитель
cd93e44ab6
Коммит
98a41afd53
|
@ -693,7 +693,10 @@ var gCookiesWindow = {
|
|||
}
|
||||
else {
|
||||
var rangeCount = seln.getRangeCount();
|
||||
for (var i = 0; i < rangeCount; ++i) {
|
||||
// Traverse backwards through selections to avoid messing
|
||||
// up the indices when they are deleted.
|
||||
// See bug 388079.
|
||||
for (var i = rangeCount - 1; i >= 0; --i) {
|
||||
var min = {}; var max = {};
|
||||
seln.getRangeAt(i, min, max);
|
||||
nextSelected = min.value;
|
||||
|
|
Загрузка…
Ссылка в новой задаче