summaryrefslogtreecommitdiff
path: root/render/form.c
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2012-09-08 15:59:55 +0100
committerMichael Drake <tlsa@netsurf-browser.org>2012-09-08 15:59:55 +0100
commit3e549fde3eb07bf9bc696a701035de29d8b2cd96 (patch)
tree9575514c730816e7a43eed699788cf93a1d3f640 /render/form.c
parentba7fba824d8b3dfcaa7da4c74a3d7d5c75c811e6 (diff)
downloadnetsurf-3e549fde3eb07bf9bc696a701035de29d8b2cd96.tar.gz
netsurf-3e549fde3eb07bf9bc696a701035de29d8b2cd96.tar.bz2
Update to use latest libdom. Fixes handling of text input with no maxlength set.
Diffstat (limited to 'render/form.c')
-rw-r--r--render/form.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/render/form.c b/render/form.c
index f0596b3d2..05d4042a2 100644
--- a/render/form.c
+++ b/render/form.c
@@ -200,9 +200,6 @@ struct form_control *form_new_control(void *node, form_control_type type)
control->node = node;
control->type = type;
- /* Default max length of input to something insane */
- control->maxlength = UINT_MAX;
-
return control;
}