summaryrefslogtreecommitdiff
path: root/render/form.h
diff options
context:
space:
mode:
authorRichard Wilson <rjw@netsurf-browser.org>2006-12-30 00:34:26 +0000
committerRichard Wilson <rjw@netsurf-browser.org>2006-12-30 00:34:26 +0000
commit1353585036eac67feeffdda4de20d91f036c1576 (patch)
tree70b313ef005a4d7945bccaf86ed499d0b3ff77fe /render/form.h
parent98b451ffaeedf9f5b0d4ab249c9f8eb216988eb1 (diff)
downloadnetsurf-1353585036eac67feeffdda4de20d91f036c1576.tar.gz
netsurf-1353585036eac67feeffdda4de20d91f036c1576.tar.bz2
Implement form targets (fix 1619094)
svn path=/trunk/netsurf/; revision=3125
Diffstat (limited to 'render/form.h')
-rw-r--r--render/form.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/render/form.h b/render/form.h
index f691eea8f..edc7fb68f 100644
--- a/render/form.h
+++ b/render/form.h
@@ -30,6 +30,7 @@ typedef enum {
/** HTML form. */
struct form {
char *action; /**< Absolute URL to submit to. */
+ char *target; /**< Target to submit to. */
form_method method; /**< Method and enctype. */
char *accept_charsets; /**< Charset to submit form in */
char *document_charset; /**< Charset of document containing form */
@@ -103,7 +104,7 @@ struct form_successful_control {
struct form_successful_control *next; /**< Next in linked list. */
};
-struct form *form_new(char *action, form_method method, char *charset,
+struct form *form_new(char *action, char *target, form_method method, char *charset,
char *doc_charset);
struct form_control *form_new_control(form_control_type type);
void form_add_control(struct form *form, struct form_control *control);