mirror of
https://github.com/servo/servo.git
synced 2025-10-14 23:40:26 +01:00
27 lines
823 B
Text
27 lines
823 B
Text
// GENERATED CONTENT - DO NOT EDIT
|
|
// Content was automatically extracted by Reffy into reffy-reports
|
|
// (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;
|
|
readonly attribute Node? target;
|
|
[Default] object toJSON();
|
|
};
|
|
|
|
[Exposed=Window]
|
|
interface EventCounts {
|
|
readonly maplike<DOMString, unsigned long long>;
|
|
};
|
|
|
|
[Exposed=Window]
|
|
partial interface Performance {
|
|
[SameObject] readonly attribute EventCounts eventCounts;
|
|
};
|
|
|
|
partial dictionary PerformanceObserverInit {
|
|
DOMHighResTimeStamp durationThreshold;
|
|
};
|