From 181178296fd1d3d8fabd23d09818bcee7c2e083a Mon Sep 17 00:00:00 2001 From: Pierre Tachoire Date: Wed, 25 Feb 2026 21:14:09 +0100 Subject: [PATCH] set empty_with_no_proto for performance timing and navigation --- src/browser/webapi/Performance.zig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/browser/webapi/Performance.zig b/src/browser/webapi/Performance.zig index 66d7e520..e9ca0ebf 100644 --- a/src/browser/webapi/Performance.zig +++ b/src/browser/webapi/Performance.zig @@ -478,6 +478,7 @@ pub const PerformanceTiming = struct { pub const name = "PerformanceTiming"; pub const prototype_chain = bridge.prototypeChain(); pub var class_id: bridge.ClassId = undefined; + pub const empty_with_no_proto = true; }; pub const navigationStart = bridge.property(0.0, .{ .template = false, .readonly = true }); @@ -518,6 +519,7 @@ pub const PerformanceNavigation = struct { pub const name = "PerformanceNavigation"; pub const prototype_chain = bridge.prototypeChain(); pub var class_id: bridge.ClassId = undefined; + pub const empty_with_no_proto = true; }; pub const @"type" = bridge.property(0.0, .{ .template = false, .readonly = true });