mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
1.9 KiB
1.9 KiB
Home > puppeteer > Protocol > Audits > MixedContentIssueDetails
Protocol.Audits.MixedContentIssueDetails interface
Signature:
export interface MixedContentIssueDetails
Properties
Property | Type | Description |
---|---|---|
frame | AffectedFrame | Optional because not every mixed content issue is necessarily linked to a frame. |
insecureURL | string | The unsafe http url causing the mixed content issue. |
mainResourceURL | string | The url responsible for the call to an unsafe url. |
request | AffectedRequest | The mixed content request. Does not always exist (e.g. for unsafe form submission urls). |
resolutionStatus | MixedContentResolutionStatus | The way the mixed content issue is being resolved. |
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 |