struct Protocol::Audits::MixedContentIssueDetails

Included Modules

Defined in:

protocol/audits.cr

Constructors

Instance Method Summary

Constructor Detail

def self.new(pull : JSON::PullParser) #

[View source]

Instance Method Detail

def frame : AffectedFrame | Nil #

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


[View source]
def insecure_url : String #

The unsafe http url causing the mixed content issue.


[View source]
def main_resource_url : String #

The url responsible for the call to an unsafe url.


[View source]
def request : AffectedRequest | Nil #

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


[View source]
def resolution_status : MixedContentResolutionStatus #

The way the mixed content issue is being resolved.


[View source]
def resource_type : MixedContentResourceType | Nil #

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


[View source]