Source code

Revision control

Copy as Markdown

Other Tools

Test Info: Warnings

/* Any copyright is dedicated to the Public Domain.
"use strict";
add_task(async function doorhanger_bc_patch_partialBadSize_completeBadSize() {
let params = {
checkAttempts: 1,
queryString: "&invalidPartialSize=1&invalidCompleteSize=1",
};
await runDoorhangerUpdateTest(params, [
{
// If the update download fails maxBackgroundErrors download attempts then
// show the update available prompt.
notificationId: "update-available",
button: "button",
checkActiveUpdate: null,
},
{
notificationId: "update-available",
button: "button",
checkActiveUpdate: null,
},
{
// If the update process is unable to install the update show the manual
// update doorhanger.
notificationId: "update-manual",
button: "button",
checkActiveUpdate: null,
pageURLs: { manual: URL_MANUAL_UPDATE },
},
]);
});