mirror of
https://github.com/servo/servo.git
synced 2025-07-11 17:33:47 +01:00
21 lines
658 B
Text
21 lines
658 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;
|
|
};
|
|
|
|
[Exposed=Window]
|
|
interface EventCounts {
|
|
readonly maplike<DOMString, unsigned long>;
|
|
};
|
|
|
|
[Exposed=Window]
|
|
partial interface Performance {
|
|
[SameObject] readonly attribute EventCounts eventCounts;
|
|
};
|