Note: This feature is available in Web Workers.
The lineNumber read-only property of the SecurityPolicyViolationEvent interface is the line number in the document or worker script at which the Content Security Policy (CSP) violation occurred.
A number representing the line number at which the violation occurred.
document.addEventListener("securitypolicyviolation", (e) => {
console.log(e.lineNumber);
});