The SecurityPolicyViolationEvent interface inherits from Event, and represents the event object of an event sent on a document or worker when its content security policy is violated.

Documentation SecurityPolicyViolationEvent by Mozilla Contributors, licensed under CC-BY-SA 2.5.

See also:

Constructor

new(type:String, ?eventInitDict:SecurityPolicyViolationEventInit)

Throws:

null

DOMError

Variables

read onlyblockedURI:String

A USVString representing the URI of the resource that was blocked because it violates a policy.

read onlycolumnNumber:Int

The column number in the document or worker at which the violation occurred.

read onlydisposition:SecurityPolicyViolationEventDisposition

Indicates how the violated policy is configured to be treated by the user agent. This will be "enforce" or "report".

read onlydocumentURI:String

A USVString representing the URI of the document or worker in which the violation was found.

read onlyeffectiveDirective:String

A DOMString representing the directive whose enforcement uncovered the violation.

read onlylineNumber:Int

The line number in the document or worker at which the violation occurred.

read onlyoriginalPolicy:String

A DOMString containing the policy whose enforcement uncovered the violation.

read onlyreferrer:String

A USVString representing the referrer of the resources whose policy was violated. This will be a URL or null.

read onlysample:String

A DOMString representing a sample of the resource that caused the violation, usually the first 40 characters. This will only be populated if the resource is an inline script, event handler, or style — external resources causing a violation will not generate a sample.

read onlysourceFile:String

A USVString representing the URI of the document or worker in which the violation was found.

read onlystatusCode:Int

A number representing the HTTP status code of the document or worker in which the violation occurred.

read onlyviolatedDirective:String

A DOMString representing the directive whose enforcement uncovered the violation.

Inherited Variables

Defined by Event

read onlybubbles:Bool

A Boolean indicating whether the event bubbles up through the DOM or not.

cancelBubble:Bool

A historical alias to Event.stopPropagation(). Setting its value to true before returning from an event handler prevents propagation of the event.

read onlycancelable:Bool

A Boolean indicating whether the event is cancelable.

read onlycomposed:Bool

A Boolean value indicating whether or not the event can bubble across the boundary between the shadow DOM and the regular DOM.

read onlycurrentTarget:EventTarget

A reference to the currently registered target for the event. This is the object to which the event is currently slated to be sent; it's possible this has been changed along the way through retargeting.

read onlydefaultPrevented:Bool

Indicates whether or not event.preventDefault() has been called on the event.

read onlyeventPhase:Int

Indicates which phase of the event flow is being processed.

read onlyexplicitOriginalTarget:EventTarget

The explicit original target of the event (Mozilla-specific).

read onlyisTrusted:Bool

Indicates whether or not the event was initiated by the browser (after a user click for instance) or by a script (using an event creation method, like event.initEvent).

read onlyoriginalTarget:EventTarget

The original target of the event, before any retargetings (Mozilla-specific).

returnValue:Bool

A historical property introduced by Internet Explorer and eventually adopted into the DOM specification in order to ensure existing sites continue to work. Ideally, you should try to use Event.preventDefault() and Event.defaultPrevented instead, but you can use returnValue if you choose to do so.

read onlytarget:EventTarget

A reference to the target to which the event was originally dispatched.

read onlytimeStamp:Float

The time at which the event was created (in milliseconds). By specification, this value is time since epoch, but in reality browsers' definitions vary; in addition, work is underway to change this to be a DOMHighResTimeStamp instead.

read onlytype:String

The name of the event (case-insensitive).

Inherited Methods

Defined by Event

composedPath():Array<EventTarget>

Returns the event’s path (objects on which listeners will be invoked). This does not include nodes in shadow trees if the shadow root was created with its ShadowRoot.mode closed.

@:value({ cancelable : false, bubbles : false })initEvent(type:String, bubbles:Bool = false, cancelable:Bool = false):Void

Initializes the value of an Event created. If the event has already being dispatched, this method does nothing.

preventDefault():Void

Cancels the event (if it is cancelable).

stopImmediatePropagation():Void

For this particular event, no other listener will be called. Neither those attached on the same element, nor those attached on elements which will be traversed later (in capture phase, for instance)

stopPropagation():Void

Stops the propagation of events further along in the DOM.