mirror of
https://git.checksum.fail/alec/erythros
synced 2025-12-11 13:39: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;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!type || !StrICmp(type, "text")) {
|
// FIXME: Validate input type=email
|
||||||
|
if (!type || !StrICmp(type, "text") || !StrICmp(type, "email")) {
|
||||||
if (!node->widthDistanceType)
|
if (!node->widthDistanceType)
|
||||||
width = 64;
|
width = 64;
|
||||||
if (!node->heightDistanceType)
|
if (!node->heightDistanceType)
|
||||||
|
|||||||
Reference in New Issue
Block a user