Merge mozilla-central to mozilla-inbound

This commit is contained in:
Carsten "Tomcat" Book 2017-01-27 12:14:06 +01:00
Родитель af33c277b4 23a6ef4890
Коммит 5b5e4fa328
1 изменённых файлов: 3 добавлений и 3 удалений

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

@ -23,13 +23,13 @@ add_task(function* () {
});
yield wait;
wait = waitForDOM(document, "#panel-3");
wait = waitForDOM(document, "#response-panel");
EventUtils.sendMouseEvent({ type: "mousedown" },
document.getElementById("details-pane-toggle"));
document.querySelector("#tab-3 a").click();
document.querySelector("#response-tab").click();
yield wait;
let tabpanel = document.querySelector("#panel-3");
let tabpanel = document.querySelector("#response-panel");
is(tabpanel.querySelector(".response-error-header") === null, true,
"The response error header doesn't have the intended visibility.");