mirror of
https://github.com/lightpanda-io/browser.git
synced 2025-10-29 15:13:28 +00:00
Fix typo in 'input' selector check
Fix a small typo in selector check
This commit is contained in:
@@ -562,7 +562,7 @@ pub const Selector = union(enum) {
|
|||||||
|
|
||||||
const ntag = try n.tag();
|
const ntag = try n.tag();
|
||||||
|
|
||||||
if (std.ascii.eqlIgnoreCase("intput", ntag)) {
|
if (std.ascii.eqlIgnoreCase("input", ntag)) {
|
||||||
const ntype = try n.attr("type");
|
const ntype = try n.attr("type");
|
||||||
if (ntype == null) return false;
|
if (ntype == null) return false;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user