add input.select placeholder

This commit is contained in:
Pierre Tachoire
2025-10-15 15:32:27 +02:00
parent 0aaed08c1e
commit 09be5e23f1

View File

@@ -732,6 +732,9 @@ pub const HTMLInputElement = struct {
pub fn set_value(self: *parser.Input, value: []const u8) !void {
try parser.inputSetValue(self, value);
}
pub fn _select(_: *parser.Input) void {
log.debug(.web_api, "not implemented", .{ .feature = "HTMLInputElement select" });
}
};
pub const HTMLLIElement = struct {