Bug 1414170 - Fix timeout of toolkit/components/extensions/test/mochitest/test_ext_new_tab_processType.html that replies non-comformant Promise handling. r=smaug

This commit is contained in:
Bevis Tseng 2017-12-14 11:20:00 -06:00
Родитель 07543200e4
Коммит 01c5765cd0
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -58,7 +58,7 @@ add_task(async function test_target_blank_link() {
let iframe = document.createElement("iframe");
iframe.src = url;
document.body.appendChild(iframe);
await new Promise(resolve => iframe.addEventListener("load", resolve, {once: true}));
await new Promise(resolve => iframe.addEventListener("load", () => setTimeout(resolve, 0), {once: true}));
let win = SpecialPowers.wrap(iframe).contentWindow;
let link = win.document.getElementById("link");