From f15561d5317a0721d157cff017497e50e06c66c1 Mon Sep 17 00:00:00 2001 From: Karl Seguin Date: Thu, 23 Apr 2026 17:25:38 +0800 Subject: [PATCH] Add getEntriesByType and getEntriesByName to PerformanceObserver entry list Seen on dropbox.com --- .../performance_observer.html | 71 +++++++++++++++++++ src/browser/webapi/Performance.zig | 43 +++++------ src/browser/webapi/PerformanceObserver.zig | 13 +++- 3 files changed, 106 insertions(+), 21 deletions(-) diff --git a/src/browser/tests/performance_observer/performance_observer.html b/src/browser/tests/performance_observer/performance_observer.html index 40ed883d..38e1607b 100644 --- a/src/browser/tests/performance_observer/performance_observer.html +++ b/src/browser/tests/performance_observer/performance_observer.html @@ -69,6 +69,77 @@ testing.expectEqual(['mark', 'measure'], PerformanceObserver.supportedEntryTypes); + + + +