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:
Brian Grinstead 2018-10-12 21:12:55 +00:00
Родитель 56c58b6d06
Коммит 62df0fa1b2
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -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;