1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-16 01:34:58 +00:00
serenity/Tests/LibWeb/Text/expected/PerformanceObserver/PerformanceObserver_basic.txt
MacDue 1d999fa780 LibWeb: Return milliseconds from unsafe_shared_current_time()
This was incorrectly changed to returning seconds in fc5cab5, which
meant the time passed to the callbacks of requestAnimationFrame() was
wrong.
2024-02-11 08:10:45 +01:00

28 lines
1.1 KiB
Text

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] === measureMark: true
allEntries[2] === endMark: 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