blob: b1b57a4bb17c117c5b6dc866689e8745b49a2d22 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// META: global=window,worker
// META: script=/resources/WebIDLParser.js
// META: script=/resources/idlharness.js
// https://wicg.github.io/event-timing/
'use strict';
idl_test(
['event-timing'],
['performance-timeline', 'hr-time', 'dom'],
idl_array => {
idl_array.add_objects({
Performance: ['performance'],
EventCounts: ['performance.eventCounts'],
InteractionCounts: ['performance.interactionCounts'],
// PerformanceEventTiming: [ TODO ]
});
}
);
|