зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1498713 - Use .children for context menu test helper instead of .childNodes to fix tests in browser.xhtml;r=bdahl
Differential Revision: https://phabricator.services.mozilla.com/D8604 --HG-- extra : moz-landing-system : lando
This commit is contained in:
Родитель
56c58b6d06
Коммит
62df0fa1b2
|
@ -36,8 +36,8 @@ function closeContextMenu() {
|
|||
function getVisibleMenuItems(aMenu, aData) {
|
||||
var items = [];
|
||||
var accessKeys = {};
|
||||
for (var i = 0; i < aMenu.childNodes.length; i++) {
|
||||
var item = aMenu.childNodes[i];
|
||||
for (var i = 0; i < aMenu.children.length; i++) {
|
||||
var item = aMenu.children[i];
|
||||
if (item.hidden)
|
||||
continue;
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче