mirror of
https://git.checksum.fail/alec/erythros
synced 2025-12-10 13:09:55 +02:00
System/Libraries/Html/Renderer: Support (but not yet validate) INPUT type=email
This commit is contained in:
@@ -1480,7 +1480,8 @@ U0 @render_form_input_element(@html_dom_node* node, HtmlRenderer* renderer)
|
||||
return;
|
||||
}
|
||||
|
||||
if (!type || !StrICmp(type, "text")) {
|
||||
// FIXME: Validate input type=email
|
||||
if (!type || !StrICmp(type, "text") || !StrICmp(type, "email")) {
|
||||
if (!node->widthDistanceType)
|
||||
width = 64;
|
||||
if (!node->heightDistanceType)
|
||||
|
||||
Reference in New Issue
Block a user