mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 18:17:45 +00:00
LibWeb: Implement PerformanceObserver
This commit is contained in:
parent
5055883b9f
commit
af2886449a
22 changed files with 793 additions and 57 deletions
|
@ -0,0 +1,28 @@
|
|||
TypeError: Must specify one of entryTypes or type
|
||||
TypeError: Cannot specify type or buffered if entryTypes is specified
|
||||
TypeError: Cannot specify type or buffered if entryTypes is specified
|
||||
InvalidModificationError: Cannot change a PerformanceObserver from observing multiple types to observing a single type
|
||||
observer === globalObserver: true
|
||||
list instanceof PerformanceObserverEntryList: true
|
||||
allEntries instanceof Array: true
|
||||
allEntries.length === 3: true
|
||||
allEntries[0] === startMark: true
|
||||
allEntries[1] === endMark: true
|
||||
allEntries[2] === measureMark: true
|
||||
markEntries instanceof Array: true
|
||||
markEntries.length === 2: true
|
||||
markEntries[0] === startMark: true
|
||||
markEntries[1] === endMark: true
|
||||
measureEntries instanceof Array: true
|
||||
measureEntries.length === 1: true
|
||||
measureEntries[0] === measureMark: true
|
||||
startEntries instanceof Array: true
|
||||
startEntries.length === 1: true
|
||||
startEntries[0] === startMark: true
|
||||
endEntries instanceof Array: true
|
||||
endEntries.length === 1: true
|
||||
endEntries[0] === endMark: true
|
||||
measureEntriesByName instanceof Array: true
|
||||
measureEntriesByName.length === 1: true
|
||||
measureEntriesByName[0] === measureMark: true
|
||||
records.length === 0: true
|
Loading…
Add table
Add a link
Reference in a new issue