diff options
author | Tatsuya Kinoshita <tats@vega.ocn.ne.jp> | 2011-06-19 11:50:53 +0000 |
---|---|---|
committer | Tatsuya Kinoshita <tats@vega.ocn.ne.jp> | 2011-06-19 11:50:53 +0000 |
commit | 5f9f33d085fa1ad2eabf5e0e97d66dbf77d630c3 (patch) | |
tree | e72fd7ba1cb41472c661c364f1f45f5082a41c8e /table.c | |
parent | Merge branch 'bug/changelog-typo' (diff) | |
parent | Support the button element as defined in HTML 4.01 (diff) | |
download | w3m-5f9f33d085fa1ad2eabf5e0e97d66dbf77d630c3.tar.gz w3m-5f9f33d085fa1ad2eabf5e0e97d66dbf77d630c3.zip |
Merge branch 'bug/136810'
Diffstat (limited to 'table.c')
-rw-r--r-- | table.c | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -2878,6 +2878,14 @@ feed_table_tag(struct table *tbl, char *line, struct table_mode *mode, tmp = process_input(tag); feed_table1(tbl, tmp, mode, width); break; + case HTML_BUTTON: + tmp = process_button(tag); + feed_table1(tbl, tmp, mode, width); + break; + case HTML_N_BUTTON: + tmp = process_n_button(); + feed_table1(tbl, tmp, mode, width); + break; case HTML_SELECT: tmp = process_select(tag); if (tmp) |