input (color)

This commit is contained in:
Face
2025-07-23 20:42:02 +03:00
parent a899f3637e
commit 2810233729
26 changed files with 571 additions and 99 deletions

View File

@@ -79,7 +79,7 @@ class HTMLElement:
return result
func is_inline_element() -> bool:
return tag_name in ["b", "i", "u", "small", "mark", "code", "span", "a"]
return tag_name in ["b", "i", "u", "small", "mark", "code", "span", "a", "input"]
class ParseResult:
var root: HTMLElement