mirror of
https://github.com/rkd77/elinks.git
synced 2024-12-04 14:46:47 -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
37b20d998c
commit
c1b91c7bf3
@ -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 */
|
||||
|
||||
|
@ -2074,7 +2074,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…
Reference in New Issue
Block a user