Merge mozilla-central to autoland

This commit is contained in:
Carsten "Tomcat" Book 2017-01-27 12:14:51 +01:00
commit 1374017426

View file

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