Note: This feature is only available in Web Workers.
The securitypolicyviolation event is fired when a Content Security Policy is violated in a worker.
The handler can be assigned using the onsecuritypolicyviolation event handler property or using EventTarget.addEventListener().
Use the event name in methods like addEventListener(), or set an event handler property.
addEventListener("securitypolicyviolation", (event) => { })
onsecuritypolicyviolation = (event) => { }A SecurityPolicyViolationEvent. Inherits from Event.
The code below shows how you might add an event handler function using the onsecuritypolicyviolation event handler property or call addEventListener() method.
self.onsecuritypolicyviolation = (e) => {
// Handle SecurityPolicyViolationEvent e here
};
self.addEventListener("securitypolicyviolation", (e) => {
// Handle SecurityPolicyViolationEvent e here
});securitypolicyviolation event of the Document interfacesecuritypolicyviolation event of the Element interface