/* Any copyright is dedicated to the Public Domain. * http://creativecommons.org/publicdomain/zero/1.0/ */ "use strict"; // Test for About Dialog foreground check for updates // with a malformed update XML file. add_task(async function aboutDialog_foregroundCheck_malformedXML() { let params = { queryString: "&xmlMalformed=1" }; await runAboutDialogUpdateTest(params, [ { panelId: "checkingForUpdates", checkActiveUpdate: null, continueFile: CONTINUE_CHECK, }, { panelId: "checkingFailed", checkActiveUpdate: null, continueFile: null, }, ]); });