These no longer serve any purpose now that we run the IDLGenerator on all of these files at once.
9 lines
347 B
Text
9 lines
347 B
Text
// https://w3c.github.io/performance-timeline/#dom-performanceentry
|
|
[Exposed=(Window,Worker)]
|
|
interface PerformanceEntry {
|
|
readonly attribute DOMString name;
|
|
readonly attribute DOMString entryType;
|
|
readonly attribute DOMHighResTimeStamp startTime;
|
|
readonly attribute DOMHighResTimeStamp duration;
|
|
[Default] object toJSON();
|
|
};
|