summaryrefslogtreecommitdiff
path: root/test/dump.h
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2009-02-14 17:20:19 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2009-02-14 17:20:19 +0000
commit1d8b0aad719898be0f1b8a862be41c2b51075c80 (patch)
tree1efac87b00dba4be396a3aa9ef1c45e023272ff0 /test/dump.h
parent03c0b36fdb90960b4a4c1e6f86084c850463195b (diff)
downloadlibcss-1d8b0aad719898be0f1b8a862be41c2b51075c80.tar.gz
libcss-1d8b0aad719898be0f1b8a862be41c2b51075c80.tar.bz2
Rework handling of imported stylesheets.
No longer is the client called back mid-parse. Instead, they must acquire details of and process imported stylesheets after css_stylesheet_data_done() has been called on the parent sheet. The return code of css_stylesheet_data_done() informs the client of the need to process imported sheets. svn path=/trunk/libcss/; revision=6504
Diffstat (limited to 'test/dump.h')
-rw-r--r--test/dump.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/test/dump.h b/test/dump.h
index 98ec1bb..4626894 100644
--- a/test/dump.h
+++ b/test/dump.h
@@ -87,11 +87,8 @@ void dump_rule_import(css_rule_import *s, char **buf, size_t *buflen)
{
char *ptr = *buf;
- if (s->sheet == NULL) {
- assert(0 && "No imported sheet");
- }
-
- ptr += sprintf(ptr, "| @import url(\"%s\")", s->sheet->url);
+ ptr += sprintf(ptr, "| @import url(\"%.*s\")",
+ (int) s->url->len, (const char *) s->url->data);
/** \todo media list */