Source code

Revision control

Copy as Markdown

Other Tools

Test Info: Warnings

/* Any copyright is dedicated to the Public Domain.
"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,
},
]);
});