2026-03-23 08:09:30 -03:00
|
|
|
// https://w3c.github.io/event-timing/#sec-performance-event-timing
|
2024-09-22 16:12:55 -03:00
|
|
|
[Exposed=Window]
|
|
|
|
|
interface PerformanceEventTiming : PerformanceEntry {
|
|
|
|
|
readonly attribute DOMHighResTimeStamp processingStart;
|
|
|
|
|
readonly attribute DOMHighResTimeStamp processingEnd;
|
|
|
|
|
readonly attribute boolean cancelable;
|
|
|
|
|
readonly attribute Node? target;
|
|
|
|
|
readonly attribute unsigned long long interactionId;
|
|
|
|
|
[Default] object toJSON();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Potential fixme: This spec has some more IDLs
|
2026-03-23 08:09:30 -03:00
|
|
|
// https://w3c.github.io/event-timing/#sec-event-counts
|
|
|
|
|
// https://w3c.github.io/event-timing/#sec-extensions
|
|
|
|
|
// https://w3c.github.io/event-timing/#sec-modifications-perf-timeline
|