Source code

Revision control

Copy as Markdown

Other Tools

Test Info: Warnings

/* Any copyright is dedicated to the Public Domain.
// Tests that errors about insecure passwords are logged to the web console.
// See Bug 762593.
"use strict";
const TEST_URI =
"test/browser/" +
"test-insecure-passwords-about-blank-web-console-warning.html";
const INSECURE_PASSWORD_MSG =
"Password fields present on an insecure (http://) iframe." +
" This is a security risk that allows user login credentials to be stolen.";
add_task(async function () {
await pushPref("dom.security.https_first", false);
const hud = await openNewTabAndConsole(TEST_URI);
await waitFor(() => findWarningMessage(hud, INSECURE_PASSWORD_MSG), "", 100);
ok(true, "Insecure password error displayed successfully");
});