blob: d9622eabd3279169c875c1225acdee1d9eb9c203 [file] [log] [blame]
(async function(testRunner) {
const {page, session, dp} = await testRunner.startBlank(
`Verifies that mixed content issue is created from mixed content form.\n`);
await dp.Network.enable();
await dp.Audits.enable();
page.navigate('https://devtools.test:8443/inspector-protocol/resources/mixed-content-form.html');
const issue = await dp.Audits.onceIssueAdded();
testRunner.log(issue.params, "Inspector issue: ");
testRunner.completeTest();
})