2017-11-29 17:53:00 +03:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
enum SecurityPolicyViolationEventDisposition
|
|
|
|
{
|
|
|
|
"enforce", "report"
|
|
|
|
};
|
|
|
|
|
2018-09-06 10:05:10 +03:00
|
|
|
[Constructor(DOMString type, optional SecurityPolicyViolationEventInit eventInitDict)]
|
2017-11-29 17:53:00 +03:00
|
|
|
interface SecurityPolicyViolationEvent : Event
|
|
|
|
{
|
2018-09-13 23:04:55 +03:00
|
|
|
readonly attribute DOMString documentURI;
|
|
|
|
readonly attribute DOMString referrer;
|
|
|
|
readonly attribute DOMString blockedURI;
|
|
|
|
readonly attribute DOMString violatedDirective;
|
|
|
|
readonly attribute DOMString effectiveDirective;
|
|
|
|
readonly attribute DOMString originalPolicy;
|
|
|
|
readonly attribute DOMString sourceFile;
|
|
|
|
readonly attribute DOMString sample;
|
|
|
|
readonly attribute SecurityPolicyViolationEventDisposition disposition;
|
|
|
|
readonly attribute unsigned short statusCode;
|
|
|
|
readonly attribute long lineNumber;
|
|
|
|
readonly attribute long columnNumber;
|
2017-11-29 17:53:00 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
dictionary SecurityPolicyViolationEventInit : EventInit
|
|
|
|
{
|
2018-09-13 23:04:55 +03:00
|
|
|
DOMString documentURI = "";
|
|
|
|
DOMString referrer = "";
|
|
|
|
DOMString blockedURI = "";
|
|
|
|
DOMString violatedDirective = "";
|
|
|
|
DOMString effectiveDirective = "";
|
|
|
|
DOMString originalPolicy = "";
|
|
|
|
DOMString sourceFile = "";
|
|
|
|
DOMString sample = "";
|
|
|
|
SecurityPolicyViolationEventDisposition disposition = "report";
|
|
|
|
unsigned short statusCode = 0;
|
|
|
|
long lineNumber = 0;
|
|
|
|
long columnNumber = 0;
|
2017-11-29 17:53:00 +03:00
|
|
|
};
|