Merge pull request #566 from lightpanda-io/null_prefix_namespace
Some checks failed
e2e-test / zig build release (push) Has been cancelled
e2e-test / puppeteer-perf (push) Has been cancelled
e2e-test / demo-scripts (push) Has been cancelled
wpt / web platform tests (push) Has been cancelled
wpt / web platform tests json output (push) Has been cancelled
wpt / perf-fmt (push) Has been cancelled
zig-test / zig build dev (push) Has been cancelled
zig-test / browser fetch (push) Has been cancelled
zig-test / zig test (push) Has been cancelled
zig-test / perf-fmt (push) Has been cancelled

pass null namespace/prefix to libdom
This commit is contained in:
Pierre Tachoire
2025-04-24 09:27:03 +02:00
committed by GitHub
4 changed files with 15 additions and 13 deletions

View File

@@ -163,12 +163,14 @@ const Inspector = struct {
_ = object_id;
return try alloc.create(i32);
}
pub fn contextCreated(self: *const Inspector,
executor: *const Env.Executor,
name: []const u8,
origin: []const u8,
aux_data: ?[]const u8,
is_default_context: bool,) void {
pub fn contextCreated(
self: *const Inspector,
executor: *const Env.Executor,
name: []const u8,
origin: []const u8,
aux_data: ?[]const u8,
is_default_context: bool,
) void {
_ = self;
_ = executor;
_ = name;