Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /performance-timeline/idlharness.any.html - WPT Dashboard Interop Dashboard
- /performance-timeline/idlharness.any.serviceworker.html - WPT Dashboard Interop Dashboard
- /performance-timeline/idlharness.any.shadowrealm-in-window.html - WPT Dashboard Interop Dashboard
- /performance-timeline/idlharness.any.sharedworker.html - WPT Dashboard Interop Dashboard
- /performance-timeline/idlharness.any.worker.html - WPT Dashboard Interop Dashboard
// META: global=window,worker,shadowrealm-in-window
// META: script=/resources/WebIDLParser.js
// META: script=/resources/idlharness.js
'use strict';
idl_test(
['performance-timeline'],
['hr-time', 'dom'],
async idl_array => {
if (self.GLOBAL.isShadowRealm()) {
return;
}
idl_array.add_objects({
Performance: ['performance'],
PerformanceObserver: ['observer'],
PerformanceObserverEntryList: ['entryList'],
});
self.entryList = await new Promise((resolve, reject) => {
self.observer = new PerformanceObserver(resolve);
observer.observe({ entryTypes: ['mark'] });
performance.mark('test');
});
}
);