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