remove debug statement

This commit is contained in:
Karl Seguin
2025-05-26 15:43:21 +08:00
parent ecd593fb53
commit b8cd0c1a77

View File

@@ -138,7 +138,6 @@ pub const CSSStyleDeclaration = struct {
}
pub fn named_get(self: *const CSSStyleDeclaration, name: []const u8, _: *bool) []const u8 {
std.debug.print("named_get: {s} {s}\n", .{name, self._getPropertyValue(name)});
return self._getPropertyValue(name);
}
};