From b989ea6b477f07f3e8432ea53996870de32cfaad Mon Sep 17 00:00:00 2001 From: Pierre Tachoire Date: Tue, 23 Jun 2026 17:42:27 +0200 Subject: [PATCH] remove useless comment --- src/browser/Frame.zig | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/browser/Frame.zig b/src/browser/Frame.zig index 3b8ad4e31..ceac93c87 100644 --- a/src/browser/Frame.zig +++ b/src/browser/Frame.zig @@ -1936,12 +1936,6 @@ pub fn queueElementEvent(self: *Frame, element: *Element.Html, kind: QueuedEvent } } -// Per spec, `hashchange` is fired by queuing a task rather than synchronously, -// so a listener registered after the fragment change still observes it. The -// old/new URLs are captured by slice: both already point to arena memory that -// outlives the task, and arena allocations are never freed individually, so a -// synchronous reassignment of the frame's URL before the task runs leaves the -// captured blocks intact. Mirrors the async-dispatch pattern of MessagePort etc. const HashChangeCallback = struct { frame: *Frame, old_url: []const u8,