зеркало из 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) {
|
function getVisibleMenuItems(aMenu, aData) {
|
||||||
var items = [];
|
var items = [];
|
||||||
var accessKeys = {};
|
var accessKeys = {};
|
||||||
for (var i = 0; i < aMenu.childNodes.length; i++) {
|
for (var i = 0; i < aMenu.children.length; i++) {
|
||||||
var item = aMenu.childNodes[i];
|
var item = aMenu.children[i];
|
||||||
if (item.hidden)
|
if (item.hidden)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
|
|
Загрузка…
Ссылка в новой задаче