mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-27 10:07:15 +02:00
These no longer serve any purpose now that we run the IDLGenerator on all of these files at once.
13 lines
422 B
Plaintext
13 lines
422 B
Plaintext
// https://w3c.github.io/user-timing/#dom-performancemark
|
|
[Exposed=(Window,Worker)]
|
|
interface PerformanceMark : PerformanceEntry {
|
|
constructor(DOMString markName, optional PerformanceMarkOptions markOptions = {});
|
|
readonly attribute any detail;
|
|
};
|
|
|
|
// https://w3c.github.io/user-timing/#ref-for-dom-performancemarkoptions-1
|
|
dictionary PerformanceMarkOptions {
|
|
any detail;
|
|
DOMHighResTimeStamp startTime;
|
|
};
|