Skip to main content
Module

x/puppeteer_plus/mod.ts>Protocol.Audits.MixedContentIssueDetails

Deno port of puppeteer base on latest TypeScript source.
Go to Latest
interface Protocol.Audits.MixedContentIssueDetails
import { type Protocol } from "https://deno.land/x/puppeteer_plus@0.14.0/mod.ts";
const { MixedContentIssueDetails } = Protocol.Audits;

Properties

optional
resourceType: MixedContentResourceType

The type of resource causing the mixed content issue (css, js, iframe, form,...). Marked as optional because it is mapped to from blink::mojom::RequestContextType, which will be replaced by network::mojom::RequestDestination

resolutionStatus: MixedContentResolutionStatus

The way the mixed content issue is being resolved.

insecureURL: string

The unsafe http url causing the mixed content issue.

mainResourceURL: string

The url responsible for the call to an unsafe url.

optional
request: AffectedRequest

The mixed content request. Does not always exist (e.g. for unsafe form submission urls).

optional
frame: AffectedFrame

Optional because not every mixed content issue is necessarily linked to a frame.