SecurityPolicyViolationEvent: lineNumber property

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.

Value

A number representing the line number at which the violation occurred.

Examples

js
document.addEventListener("securitypolicyviolation", (e) => {
  console.log(e.lineNumber);
});

Specifications

See also