1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-10-27 08:00:32 -04:00

DOM: Added the html_data field to the struct dom_element_node.

html_data will be used by the future renderer.
This commit is contained in:
Witold Filipczyk 2007-05-13 19:58:11 +02:00 committed by Witold Filipczyk
parent 9edc009c10
commit 5626d6499f

View File

@ -141,6 +141,10 @@ struct dom_element_node {
* containing an enum value representing the element to reduce string
* comparing and only do one fast find mapping. */
uint16_t type;
/* The pointer to the additonal data for HTML.
* The allocated memory vary in size for different elements. */
void *html_data;
};
/* Attribute nodes are named nodes stored in a node map of an element node. */