Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 12 additions & 6 deletions doc/api/perf_hooks.md
Original file line numberDiff line numberDiff line change
Expand Up@@ -1328,13 +1328,15 @@ const obs = new PerformanceObserver((perfObserverList, observer) =>{
* name: 'test',
* entryType: 'mark',
* startTime: 81.465639,
* duration: 0
* duration: 0,
* detail: null
* },
* PerformanceEntry{
* name: 'meow',
* entryType: 'mark',
* startTime: 81.860064,
* duration: 0
* duration: 0,
* detail: null
* }
* ]
*/
Expand DownExpand Up@@ -1378,7 +1380,8 @@ const obs = new PerformanceObserver((perfObserverList, observer) =>{
* name: 'meow',
* entryType: 'mark',
* startTime: 98.545991,
* duration: 0
* duration: 0,
* detail: null
* }
* ]
*/
Expand All@@ -1391,7 +1394,8 @@ const obs = new PerformanceObserver((perfObserverList, observer) =>{
* name: 'test',
* entryType: 'mark',
* startTime: 63.518931,
* duration: 0
* duration: 0,
* detail: null
* }
* ]
*/
Expand DownExpand Up@@ -1434,13 +1438,15 @@ const obs = new PerformanceObserver((perfObserverList, observer) =>{
* name: 'test',
* entryType: 'mark',
* startTime: 55.897834,
* duration: 0
* duration: 0,
* detail: null
* },
* PerformanceEntry{
* name: 'meow',
* entryType: 'mark',
* startTime: 56.350146,
* duration: 0
* duration: 0,
* detail: null
* }
* ]
*/
Expand Down