Quick-check sameness in Node.isEqualNode

Exclusively use the not_implemented log filter.
This commit is contained in:
Karl Seguin
2025-12-26 09:57:33 +08:00
parent 0fff379ee0
commit 05cb5221d4
9 changed files with 18 additions and 20 deletions

View File

@@ -101,7 +101,7 @@ fn createBrowserContext(cmd: anytype) !void {
});
if (params) |p| {
if (p.disposeOnDetach or p.proxyBypassList != null or p.originsWithUniversalNetworkAccess != null) {
log.warn(.cdp, "not implemented", .{ .feature = "Target.createBrowserContext: Not implemented param set" });
log.warn(.not_implemented, "Target.createBrowserContext", .{ .disposeOnDetach = p.disposeOnDetach, .has_proxyBypassList = p.proxyBypassList != null, .has_originsWithUniversalNetworkAccess = p.originsWithUniversalNetworkAccess != null });
}
}