summaryrefslogtreecommitdiff
path: root/content/content.c
diff options
context:
space:
mode:
authorJames Bursa <james@netsurf-browser.org>2004-01-24 17:08:16 +0000
committerJames Bursa <james@netsurf-browser.org>2004-01-24 17:08:16 +0000
commit1bdcb446392b9fd67d45df22d360dd72d7c353cc (patch)
tree5a23f86b3ee9b77728dbe4cde6915d54bbed2cc9 /content/content.c
parentb116f20cd4d75f539164a0e858272145d99e4e6d (diff)
downloadnetsurf-1bdcb446392b9fd67d45df22d360dd72d7c353cc.tar.gz
netsurf-1bdcb446392b9fd67d45df22d360dd72d7c353cc.tar.bz2
[project @ 2004-01-24 17:08:15 by bursa]
Add permitted_types to html_fetch_object(). svn path=/import/netsurf/; revision=500
Diffstat (limited to 'content/content.c')
-rw-r--r--content/content.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/content/content.c b/content/content.c
index 61b8cd1c9..927269441 100644
--- a/content/content.c
+++ b/content/content.c
@@ -109,15 +109,13 @@ static const struct handler_entry handler_map[] = {
html_add_instance, html_remove_instance, html_reshape_instance},
{textplain_create, textplain_process_data, textplain_convert,
textplain_revive, textplain_reformat, textplain_destroy, 0, 0, 0, 0},
+ {css_create, css_process_data, css_convert, css_revive,
+ css_reformat, css_destroy, 0, 0, 0, 0},
#ifdef riscos
#ifdef WITH_JPEG
{jpeg_create, jpeg_process_data, jpeg_convert, jpeg_revive,
jpeg_reformat, jpeg_destroy, jpeg_redraw, 0, 0, 0},
#endif
-#endif
- {css_create, css_process_data, css_convert, css_revive,
- css_reformat, css_destroy, 0, 0, 0, 0},
-#ifdef riscos
#ifdef WITH_PNG
{nspng_create, nspng_process_data, nspng_convert, nspng_revive,
nspng_reformat, nspng_destroy, nspng_redraw, 0, 0, 0},