Update web-platform-tests to revision add24188a1226f3598ad6b455e71641c9ac6a5fd

This commit is contained in:
WPT Sync Bot 2019-03-29 21:43:03 -04:00
parent 4cf39a696d
commit 6ed2abf735
80 changed files with 2127 additions and 133 deletions

View file

@ -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"
};