mirror of
https://github.com/servo/servo.git
synced 2025-08-24 06:45:33 +01:00
Update web-platform-tests to revision add24188a1226f3598ad6b455e71641c9ac6a5fd
This commit is contained in:
parent
4cf39a696d
commit
6ed2abf735
80 changed files with 2127 additions and 133 deletions
|
@ -3,6 +3,20 @@
|
|||
// (https://github.com/tidoust/reffy-reports)
|
||||
// Source: Content Security Policy Level 3 (https://w3c.github.io/webappsec-csp/)
|
||||
|
||||
interface CSPViolationReportBody : ReportBody {
|
||||
readonly attribute USVString documentURL;
|
||||
readonly attribute USVString? referrer;
|
||||
readonly attribute USVString? blockedURL;
|
||||
readonly attribute DOMString effectiveDirective;
|
||||
readonly attribute DOMString originalPolicy;
|
||||
readonly attribute USVString? sourceFile;
|
||||
readonly attribute DOMString? sample;
|
||||
readonly attribute SecurityPolicyViolationEventDisposition disposition;
|
||||
readonly attribute unsigned short statusCode;
|
||||
readonly attribute unsigned long? lineNumber;
|
||||
readonly attribute unsigned long? columnNumber;
|
||||
};
|
||||
|
||||
enum SecurityPolicyViolationEventDisposition {
|
||||
"enforce", "report"
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue