aboutsummaryrefslogtreecommitdiffstats
path: root/fm.h
diff options
context:
space:
mode:
authorTatsuya Kinoshita <tats@vega.ocn.ne.jp>2011-06-19 11:50:53 +0000
committerTatsuya Kinoshita <tats@vega.ocn.ne.jp>2011-06-19 11:50:53 +0000
commit5f9f33d085fa1ad2eabf5e0e97d66dbf77d630c3 (patch)
treee72fd7ba1cb41472c661c364f1f45f5082a41c8e /fm.h
parentMerge branch 'bug/changelog-typo' (diff)
parentSupport the button element as defined in HTML 4.01 (diff)
downloadw3m-5f9f33d085fa1ad2eabf5e0e97d66dbf77d630c3.tar.gz
w3m-5f9f33d085fa1ad2eabf5e0e97d66dbf77d630c3.zip
Merge branch 'bug/136810'
Diffstat (limited to '')
-rw-r--r--fm.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/fm.h b/fm.h
index 8378939..633ce90 100644
--- a/fm.h
+++ b/fm.h
@@ -562,6 +562,13 @@ typedef struct _DownloadList {
#define INIT_BUFFER_WIDTH ((_INIT_BUFFER_WIDTH > 0) ? _INIT_BUFFER_WIDTH : 0)
#define FOLD_BUFFER_WIDTH (FoldLine ? (INIT_BUFFER_WIDTH + 1) : -1)
+struct input_alt_attr {
+ int hseq;
+ int fid;
+ int in;
+ Str type, name, value;
+};
+
typedef struct {
int pos;
int len;
@@ -569,6 +576,7 @@ typedef struct {
long flag;
Anchor anchor;
Str img_alt;
+ struct input_alt_attr input_alt;
char fontstat[FONTSTAT_SIZE];
short nobr_level;
Lineprop prev_ctype;
@@ -591,6 +599,7 @@ struct readbuffer {
short nobr_level;
Anchor anchor;
Str img_alt;
+ struct input_alt_attr input_alt;
char fontstat[FONTSTAT_SIZE];
char fontstat_stack[FONT_STACK_SIZE][FONTSTAT_SIZE];
int fontstat_sp;