csp-next.idl (522B)
1 // GENERATED CONTENT - DO NOT EDIT 2 // Content was automatically extracted by Reffy into webref 3 // (https://github.com/w3c/webref) 4 // Source: Scripting Policy (https://wicg.github.io/csp-next/scripting-policy.html) 5 6 enum ScriptingPolicyViolationType { 7 "externalScript", 8 "inlineScript", 9 "inlineEventHandler", 10 "eval" 11 }; 12 13 dictionary ScriptingPolicyReportBody : ReportBody { 14 DOMString violationType; 15 USVString? violationURL; 16 USVString? violationSample; 17 unsigned long lineno; 18 unsigned long colno; 19 };