зеркало из https://github.com/mozilla/gecko-dev.git
24 строки
534 B
JavaScript
24 строки
534 B
JavaScript
// META: script=/resources/WebIDLParser.js
|
|
// META: script=/resources/idlharness.js
|
|
|
|
'use strict';
|
|
|
|
// https://w3c.github.io/resource-timing/
|
|
|
|
idl_test(
|
|
['resource-timing'],
|
|
['performance-timeline', 'hr-time', 'dom', 'html'],
|
|
idl_array => {
|
|
try {
|
|
self.resource = performance.getEntriesByType('resource')[0];
|
|
} catch (e) {
|
|
// Will be surfaced when resource is undefined below.
|
|
}
|
|
|
|
idl_array.add_objects({
|
|
Performance: ['performance'],
|
|
PerformanceResourceTiming: ['resource']
|
|
});
|
|
}
|
|
);
|