Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test has a WPT meta file that expects 11 subtest issues.
- This WPT test may be referenced by the following Test IDs:
- /server-timing/idlharness.https.any.html - WPT Dashboard Interop Dashboard
- /server-timing/idlharness.https.any.worker.html - WPT Dashboard Interop Dashboard
// META: script=/resources/WebIDLParser.js
// META: script=/resources/idlharness.js
// META: timeout=long
'use strict';
idl_test(
['resource-timing', 'server-timing'],
['performance-timeline', 'hr-time', 'dom'],
idl_array => new Promise((resolve, reject) => {
new PerformanceObserver(entries => {
entries.getEntries().forEach(e => {
if (!e.name.endsWith('blue.png'))
return;
self.resource = e;
self.server = e.serverTiming[0];
idl_array.add_objects({
PerformanceResourceTiming: ['resource'],
PerformanceServerTiming: ['server']
});
resolve();
})
}).observe({entryTypes: ['resource']});
fetch('resources/blue.png');
})
);