Skip to content

Commit 09be5e2

Browse files
committed
add input.select placeholder
1 parent 0aaed08 commit 09be5e2

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/browser/html/elements.zig

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -732,6 +732,9 @@ pub const HTMLInputElement = struct {
732732
pub fn set_value(self: *parser.Input, value: []const u8) !void {
733733
try parser.inputSetValue(self, value);
734734
}
735+
pub fn _select(_: *parser.Input) void {
736+
log.debug(.web_api, "not implemented", .{ .feature = "HTMLInputElement select" });
737+
}
735738
};
736739

737740
pub const HTMLLIElement = struct {

0 commit comments

Comments
 (0)