mirror of
https://github.com/servo/servo.git
synced 2025-08-20 12:55:33 +01:00
Update web-platform-tests to revision 6087baf4a83e7953112242be9fd6e719797ebdf6
This commit is contained in:
parent
3c19cd49ec
commit
6c2d26eb4b
76 changed files with 3020 additions and 345 deletions
|
@ -3,16 +3,19 @@
|
|||
// (https://github.com/tidoust/reffy-reports)
|
||||
// Source: Event Timing API (https://wicg.github.io/event-timing/)
|
||||
|
||||
[Exposed=Window]
|
||||
interface PerformanceEventTiming : PerformanceEntry {
|
||||
readonly attribute DOMHighResTimeStamp processingStart;
|
||||
readonly attribute DOMHighResTimeStamp processingEnd;
|
||||
readonly attribute boolean cancelable;
|
||||
};
|
||||
|
||||
[Exposed=Window]
|
||||
interface EventCounts {
|
||||
readonly maplike<DOMString, unsigned long>;
|
||||
};
|
||||
|
||||
[Exposed=Window]
|
||||
partial interface Performance {
|
||||
readonly attribute EventCounts eventCounts;
|
||||
[SameObject] readonly attribute EventCounts eventCounts;
|
||||
};
|
||||
|
|
|
@ -30,9 +30,13 @@ partial interface Navigator {
|
|||
|
||||
typedef (DOMString or ArrayBuffer or NFCMessage) NFCMessageSource;
|
||||
|
||||
[Constructor(), SecureContext, Exposed=Window]
|
||||
interface NFCWriter {
|
||||
Promise<void> push(NFCMessageSource message, optional NFCPushOptions options);
|
||||
};
|
||||
|
||||
[SecureContext]
|
||||
interface NFC {
|
||||
Promise<void> push(NFCMessageSource message, optional NFCPushOptions options);
|
||||
Promise<void> watch(MessageCallback callback, optional NFCWatchOptions options);
|
||||
};
|
||||
|
||||
|
|
|
@ -75,22 +75,22 @@ enum RTCIceGatheringState {
|
|||
};
|
||||
|
||||
enum RTCPeerConnectionState {
|
||||
"closed",
|
||||
"failed",
|
||||
"disconnected",
|
||||
"new",
|
||||
"connecting",
|
||||
"connected",
|
||||
"disconnected",
|
||||
"failed",
|
||||
"closed"
|
||||
"connected"
|
||||
};
|
||||
|
||||
enum RTCIceConnectionState {
|
||||
"closed",
|
||||
"failed",
|
||||
"disconnected",
|
||||
"new",
|
||||
"checking",
|
||||
"connected",
|
||||
"completed",
|
||||
"disconnected",
|
||||
"failed",
|
||||
"closed"
|
||||
"connected"
|
||||
};
|
||||
|
||||
[ Constructor(optional RTCConfiguration configuration), Exposed=Window]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue