mirror of
https://github.com/rkd77/elinks.git
synced 2025-02-02 15:09:23 -05:00
document/html: Make HTML parser state transparent
Before, *_html_parser_state() operated with struct html_element *. Now, it is transparent for the renderer (just void *), so that DOM won't have to provide this struct but will be able to use something internal. Backported from master.
This commit is contained in:
parent
f8b9992674
commit
2c6afbe5e8
@ -147,11 +147,10 @@ init_html_parser(struct uri *uri, struct document_options *options,
|
||||
void (*line_break)(struct html_context *),
|
||||
void *(*special)(struct html_context *, enum html_special_type,
|
||||
...));
|
||||
|
||||
void done_html_parser(struct html_context *html_context);
|
||||
struct html_element *init_html_parser_state(struct html_context *html_context, enum html_element_mortality_type type, int align, int margin, int width);
|
||||
void done_html_parser_state(struct html_context *html_context,
|
||||
struct html_element *element);
|
||||
|
||||
void *init_html_parser_state(struct html_context *html_context, enum html_element_mortality_type type, int align, int margin, int width);
|
||||
void done_html_parser_state(struct html_context *html_context, void *state);
|
||||
|
||||
/* Interface for the table handling */
|
||||
|
||||
|
@ -2080,7 +2080,7 @@ format_html_part(struct html_context *html_context,
|
||||
int link_num)
|
||||
{
|
||||
struct part *part;
|
||||
struct html_element *html_state;
|
||||
void *html_state;
|
||||
struct tag *saved_last_tag_to_move = renderer_context.last_tag_to_move;
|
||||
struct tag *saved_last_tag_for_newline = renderer_context.last_tag_for_newline;
|
||||
int saved_empty_format = renderer_context.empty_format;
|
||||
|
Loading…
x
Reference in New Issue
Block a user