This feature is well established and works across many devices and browser versions. It’s been available across browsers since October 2018.
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
});
| Specification |
|---|
| Content Security Policy Level 3> # eventdef-globaleventhandlers-securitypolicyviolation> |
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | WebView on iOS | |
securitypolicyviolation_event |
41 | 15 | 63 | 28 | 10 | 41 | 63 | 28 | 10 | 4.0 | 41 | 10 |
securitypolicyviolation event of the Document interfacesecuritypolicyviolation event of the Element interface
© 2005–2025 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/WorkerGlobalScope/securitypolicyviolation_event