Skip to content

Commit 9a03ba6

Browse files
authored
Fix typo in 'input' selector check
Fix a small typo in selector check
1 parent fe37770 commit 9a03ba6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/browser/css/selector.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -562,7 +562,7 @@ pub const Selector = union(enum) {
562562

563563
const ntag = try n.tag();
564564

565-
if (std.ascii.eqlIgnoreCase("intput", ntag)) {
565+
if (std.ascii.eqlIgnoreCase("input", ntag)) {
566566
const ntype = try n.attr("type");
567567
if (ntype == null) return false;
568568

0 commit comments

Comments
 (0)