mirror of
https://github.com/servo/servo.git
synced 2025-08-09 15:35:34 +01:00
Update web-platform-tests to revision 615bb572c95add74ca4fb9fed4af5269a49cf4ef
This commit is contained in:
parent
b628b6ef8e
commit
0aa76d7524
162 changed files with 2069 additions and 636 deletions
|
@ -10,31 +10,34 @@ enum SecurityPolicyViolationEventDisposition {
|
|||
[Constructor(DOMString type, optional SecurityPolicyViolationEventInit eventInitDict),
|
||||
Exposed=(Window,Worker)]
|
||||
interface SecurityPolicyViolationEvent : Event {
|
||||
readonly attribute USVString documentURI;
|
||||
readonly attribute USVString documentURL;
|
||||
readonly attribute USVString documentURI; // historical alias of documentURL
|
||||
readonly attribute USVString referrer;
|
||||
readonly attribute USVString blockedURI;
|
||||
readonly attribute DOMString violatedDirective;
|
||||
readonly attribute USVString blockedURL;
|
||||
readonly attribute USVString blockedURI; // historical alias of blockedURL
|
||||
readonly attribute DOMString effectiveDirective;
|
||||
readonly attribute DOMString violatedDirective; // historical alias of 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;
|
||||
readonly attribute unsigned long lineno;
|
||||
readonly attribute unsigned long lineNumber; // historical alias of lineno
|
||||
readonly attribute unsigned long colno;
|
||||
readonly attribute unsigned long columnNumber; // historical alias of colno
|
||||
};
|
||||
|
||||
dictionary SecurityPolicyViolationEventInit : EventInit {
|
||||
required USVString documentURI;
|
||||
required USVString documentURL;
|
||||
USVString referrer = "";
|
||||
USVString blockedURI = "";
|
||||
required DOMString violatedDirective;
|
||||
USVString blockedURL = "";
|
||||
required DOMString effectiveDirective;
|
||||
required DOMString originalPolicy;
|
||||
USVString sourceFile = "";
|
||||
DOMString sample = "";
|
||||
required SecurityPolicyViolationEventDisposition disposition;
|
||||
required unsigned short statusCode;
|
||||
unsigned long lineNumber = 0;
|
||||
unsigned long columnNumber = 0;
|
||||
unsigned long lineno = 0;
|
||||
unsigned long colno = 0;
|
||||
};
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
// (https://github.com/tidoust/reffy-reports)
|
||||
// Source: Screen Capture (https://w3c.github.io/mediacapture-screen-share/)
|
||||
|
||||
partial interface Navigator {
|
||||
partial interface MediaDevices {
|
||||
Promise<MediaStream> getDisplayMedia(optional MediaStreamConstraints constraints);
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue