зеркало из https://github.com/mozilla/gecko-dev.git
Bug 273024 - Back Button History is not in the correct order (aviary-landing). r=mconnor.
This commit is contained in:
Родитель
cb3684dc0c
Коммит
e710e37ba9
|
@ -2510,7 +2510,7 @@ function createRadioMenuItem( aParent, aIndex, aLabel, aChecked)
|
|||
function deleteHistoryItems(aParent)
|
||||
{
|
||||
var children = aParent.childNodes;
|
||||
for (var i = 0; i < children.length; i++)
|
||||
for (var i = children.length - 1; i >= 0; --i)
|
||||
{
|
||||
var index = children[i].getAttribute("index");
|
||||
if (index)
|
||||
|
|
Загрузка…
Ссылка в новой задаче