mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-12 22:28:59 +02:00
Automatic update from web-platform-tests Add interfaces/event-timing.idl Source: https://github.com/tidoust/reffy-reports/blob/9dd0ab0/whatwg/idl/event-timing.idl Build: https://travis-ci.org/tidoust/reffy-reports/builds/463841803 -- Add idlharness test -- Add performance object -- wpt-commits: 6b4c63ea99acc72920b8c5919da80142cd6c3f49, c539843749723a96b31f2d5728de07b51eeeab0d, 9a3a9e17231910c6c0bba6cd3867149e41155f66 wpt-pr: 14376
18 lines
385 B
JavaScript
18 lines
385 B
JavaScript
// 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'],
|
|
// PerformanceEventTiming: [ TODO ]
|
|
});
|
|
}
|
|
);
|