input (text/checkbox), form, button

This commit is contained in:
Face
2025-07-23 15:23:32 +03:00
parent 7a0b678fc2
commit a9ce6cb178
48 changed files with 1720 additions and 18 deletions

View File

@@ -80,9 +80,6 @@ class HTMLElement:
func is_inline_element() -> bool:
return tag_name in ["b", "i", "u", "small", "mark", "code", "span", "a"]
func is_heading_element() -> bool:
return tag_name in ["h1", "h2", "h3", "h4", "h5", "h6"]
class ParseResult:
var root: HTMLElement