Bug 1775361: Wait for a show event on the imagemap before querying its firstChild r=eeejay

Differential Revision: https://phabricator.services.mozilla.com/D150175
This commit is contained in:
Morgan Rae Reschenberg 2022-06-28 20:15:04 +00:00
Родитель a003e72c03
Коммит 08c0e3cd98
1 изменённых файлов: 7 добавлений и 1 удалений

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

@ -784,7 +784,13 @@ async function contentSpawnMutation(browser, waitFor, func, args = []) {
}
async function waitForImageMap(browser, accDoc, id = "imgmap") {
const acc = findAccessibleChildByID(accDoc, id);
let acc = findAccessibleChildByID(accDoc, id);
if (!acc) {
const onShow = waitForEvent(EVENT_SHOW, id);
acc = (await onShow).accessible;
}
if (acc.firstChild) {
return;
}