Merge pull request #1166 from gootik/patch-1

Fix typo in 'input' selector check
This commit is contained in:
Karl Seguin
2025-10-21 16:04:03 +08:00
committed by GitHub

View File

@@ -562,7 +562,7 @@ pub const Selector = union(enum) {
const ntag = try n.tag();
if (std.ascii.eqlIgnoreCase("intput", ntag)) {
if (std.ascii.eqlIgnoreCase("input", ntag)) {
const ntype = try n.attr("type");
if (ntype == null) return false;