Rebuild headers

This commit is contained in:
lexborisov 2016-11-15 03:53:24 +03:00
parent c28ec6165a
commit 8da5bd0d57
12 changed files with 2029 additions and 1313 deletions

View File

@ -18,22 +18,24 @@
Author: lex.borisov@gmail.com (Alexander Borisov)
*/
#ifndef MODEST_LAYER_TREE_H
#define MODEST_LAYER_TREE_H
#ifndef MODEST_LAYER_BINDING_H
#define MODEST_LAYER_BINDING_H
#pragma once
#include <modest/myosi.h>
#include <modest/modest.h>
#include <modest/style/type.h>
#include <modest/node/node.h>
#include <myhtml/tree.h>
#ifdef __cplusplus
extern "C" {
//extern "C" {
#endif
modest_layer_t * modest_layer_binding(modest_t* modest, myhtml_tree_t* html_tree);
#ifdef __cplusplus
} /* extern "C" */
#endif
#endif /* MODEST_LAYER_TREE_H */
#endif /* MODEST_LAYER_BINDING_H */

View File

@ -23,14 +23,37 @@
#pragma once
#include <modest/myosi.h>
#include <modest/modest.h>
#include <modest/style/type.h>
#include <myhtml/utils/mcobject.h>
#ifdef __cplusplus
extern "C" {
#endif
typedef struct modest_layer modest_layer_t;
typedef struct modest_layout modest_layout_t;
struct modest_layer {
/* navigation */
modest_layer_t* next;
modest_layer_t* prev;
modest_layer_t* child;
modest_layer_t* parent;
};
struct modest_layout {
mcobject_t* mc_nodes;
};
modest_layout_t * modest_layers_create(void);
modest_status_t modest_layers_init(modest_layout_t* layout);
void modest_layers_clean_all(modest_layout_t* layout);
modest_layout_t * modest_layers_destroy(modest_layout_t* layout, bool self_destroy);
modest_layer_t * modest_layer_create(modest_layout_t* layout);
void modest_layer_clean(modest_layer_t* layer);
modest_layer_t * modest_layer_destroy(modest_layout_t* layout, modest_layer_t* layer);
#ifdef __cplusplus
} /* extern "C" */

View File

@ -23,6 +23,7 @@
#pragma once
#include <modest/myosi.h>
#include <modest/layer/layer.h>
#include <myhtml/utils/mcobject.h>
#include <myhtml/utils/mcobject_async.h>
#include <myhtml/utils/mchar_async.h>
@ -46,6 +47,8 @@ struct modest {
mcobject_t* mraw_style_declaration_obj;
modest_layout_t* layout;
/* refs */
myhtml_tree_t* myhtml_tree;
mycss_entry_t* mycss_entry;

View File

@ -25,6 +25,7 @@
#include <modest/myosi.h>
#include <modest/modest.h>
#include <modest/style/raw.h>
#include <modest/layer/layer.h>
#ifdef __cplusplus
extern "C" {
@ -33,6 +34,7 @@ extern "C" {
struct modest_node {
modest_style_sheet_t* stylesheet;
modest_style_raw_t* raw_style;
modest_layer_t* layer;
};
modest_node_t * modest_node_create(modest_t* modest);

View File

@ -63,6 +63,14 @@ void modest_style_map_collate_declaration_bookmark_label(modest_t* modest, myhtm
void modest_style_map_collate_declaration_bookmark_level(modest_t* modest, myhtml_tree_node_t* node, mycss_declaration_entry_t* decl, modest_style_raw_specificity_t* spec);
void modest_style_map_collate_declaration_bookmark_state(modest_t* modest, myhtml_tree_node_t* node, mycss_declaration_entry_t* decl, modest_style_raw_specificity_t* spec);
void modest_style_map_collate_declaration_border(modest_t* modest, myhtml_tree_node_t* node, mycss_declaration_entry_t* decl, modest_style_raw_specificity_t* spec);
void modest_style_map_collate_declaration_border_block_end(modest_t* modest, myhtml_tree_node_t* node, mycss_declaration_entry_t* decl, modest_style_raw_specificity_t* spec);
void modest_style_map_collate_declaration_border_block_end_color(modest_t* modest, myhtml_tree_node_t* node, mycss_declaration_entry_t* decl, modest_style_raw_specificity_t* spec);
void modest_style_map_collate_declaration_border_block_end_style(modest_t* modest, myhtml_tree_node_t* node, mycss_declaration_entry_t* decl, modest_style_raw_specificity_t* spec);
void modest_style_map_collate_declaration_border_block_end_width(modest_t* modest, myhtml_tree_node_t* node, mycss_declaration_entry_t* decl, modest_style_raw_specificity_t* spec);
void modest_style_map_collate_declaration_border_block_start(modest_t* modest, myhtml_tree_node_t* node, mycss_declaration_entry_t* decl, modest_style_raw_specificity_t* spec);
void modest_style_map_collate_declaration_border_block_start_color(modest_t* modest, myhtml_tree_node_t* node, mycss_declaration_entry_t* decl, modest_style_raw_specificity_t* spec);
void modest_style_map_collate_declaration_border_block_start_style(modest_t* modest, myhtml_tree_node_t* node, mycss_declaration_entry_t* decl, modest_style_raw_specificity_t* spec);
void modest_style_map_collate_declaration_border_block_start_width(modest_t* modest, myhtml_tree_node_t* node, mycss_declaration_entry_t* decl, modest_style_raw_specificity_t* spec);
void modest_style_map_collate_declaration_border_bottom(modest_t* modest, myhtml_tree_node_t* node, mycss_declaration_entry_t* decl, modest_style_raw_specificity_t* spec);
void modest_style_map_collate_declaration_border_bottom_color(modest_t* modest, myhtml_tree_node_t* node, mycss_declaration_entry_t* decl, modest_style_raw_specificity_t* spec);
void modest_style_map_collate_declaration_border_bottom_left_radius(modest_t* modest, myhtml_tree_node_t* node, mycss_declaration_entry_t* decl, modest_style_raw_specificity_t* spec);
@ -76,6 +84,14 @@ void modest_style_map_collate_declaration_border_image_outset(modest_t* modest,
void modest_style_map_collate_declaration_border_image_repeat(modest_t* modest, myhtml_tree_node_t* node, mycss_declaration_entry_t* decl, modest_style_raw_specificity_t* spec);
void modest_style_map_collate_declaration_border_image_slice(modest_t* modest, myhtml_tree_node_t* node, mycss_declaration_entry_t* decl, modest_style_raw_specificity_t* spec);
void modest_style_map_collate_declaration_border_image_width(modest_t* modest, myhtml_tree_node_t* node, mycss_declaration_entry_t* decl, modest_style_raw_specificity_t* spec);
void modest_style_map_collate_declaration_border_inline_end(modest_t* modest, myhtml_tree_node_t* node, mycss_declaration_entry_t* decl, modest_style_raw_specificity_t* spec);
void modest_style_map_collate_declaration_border_inline_end_color(modest_t* modest, myhtml_tree_node_t* node, mycss_declaration_entry_t* decl, modest_style_raw_specificity_t* spec);
void modest_style_map_collate_declaration_border_inline_end_style(modest_t* modest, myhtml_tree_node_t* node, mycss_declaration_entry_t* decl, modest_style_raw_specificity_t* spec);
void modest_style_map_collate_declaration_border_inline_end_width(modest_t* modest, myhtml_tree_node_t* node, mycss_declaration_entry_t* decl, modest_style_raw_specificity_t* spec);
void modest_style_map_collate_declaration_border_inline_start(modest_t* modest, myhtml_tree_node_t* node, mycss_declaration_entry_t* decl, modest_style_raw_specificity_t* spec);
void modest_style_map_collate_declaration_border_inline_start_color(modest_t* modest, myhtml_tree_node_t* node, mycss_declaration_entry_t* decl, modest_style_raw_specificity_t* spec);
void modest_style_map_collate_declaration_border_inline_start_style(modest_t* modest, myhtml_tree_node_t* node, mycss_declaration_entry_t* decl, modest_style_raw_specificity_t* spec);
void modest_style_map_collate_declaration_border_inline_start_width(modest_t* modest, myhtml_tree_node_t* node, mycss_declaration_entry_t* decl, modest_style_raw_specificity_t* spec);
void modest_style_map_collate_declaration_border_left(modest_t* modest, myhtml_tree_node_t* node, mycss_declaration_entry_t* decl, modest_style_raw_specificity_t* spec);
void modest_style_map_collate_declaration_border_left_color(modest_t* modest, myhtml_tree_node_t* node, mycss_declaration_entry_t* decl, modest_style_raw_specificity_t* spec);
void modest_style_map_collate_declaration_border_left_style(modest_t* modest, myhtml_tree_node_t* node, mycss_declaration_entry_t* decl, modest_style_raw_specificity_t* spec);
@ -182,7 +198,11 @@ void modest_style_map_collate_declaration_list_style_image(modest_t* modest, myh
void modest_style_map_collate_declaration_list_style_position(modest_t* modest, myhtml_tree_node_t* node, mycss_declaration_entry_t* decl, modest_style_raw_specificity_t* spec);
void modest_style_map_collate_declaration_list_style_type(modest_t* modest, myhtml_tree_node_t* node, mycss_declaration_entry_t* decl, modest_style_raw_specificity_t* spec);
void modest_style_map_collate_declaration_margin(modest_t* modest, myhtml_tree_node_t* node, mycss_declaration_entry_t* decl, modest_style_raw_specificity_t* spec);
void modest_style_map_collate_declaration_margin_block_end(modest_t* modest, myhtml_tree_node_t* node, mycss_declaration_entry_t* decl, modest_style_raw_specificity_t* spec);
void modest_style_map_collate_declaration_margin_block_start(modest_t* modest, myhtml_tree_node_t* node, mycss_declaration_entry_t* decl, modest_style_raw_specificity_t* spec);
void modest_style_map_collate_declaration_margin_bottom(modest_t* modest, myhtml_tree_node_t* node, mycss_declaration_entry_t* decl, modest_style_raw_specificity_t* spec);
void modest_style_map_collate_declaration_margin_inline_end(modest_t* modest, myhtml_tree_node_t* node, mycss_declaration_entry_t* decl, modest_style_raw_specificity_t* spec);
void modest_style_map_collate_declaration_margin_inline_start(modest_t* modest, myhtml_tree_node_t* node, mycss_declaration_entry_t* decl, modest_style_raw_specificity_t* spec);
void modest_style_map_collate_declaration_margin_left(modest_t* modest, myhtml_tree_node_t* node, mycss_declaration_entry_t* decl, modest_style_raw_specificity_t* spec);
void modest_style_map_collate_declaration_margin_right(modest_t* modest, myhtml_tree_node_t* node, mycss_declaration_entry_t* decl, modest_style_raw_specificity_t* spec);
void modest_style_map_collate_declaration_margin_top(modest_t* modest, myhtml_tree_node_t* node, mycss_declaration_entry_t* decl, modest_style_raw_specificity_t* spec);
@ -217,7 +237,11 @@ void modest_style_map_collate_declaration_overflow_wrap(modest_t* modest, myhtml
void modest_style_map_collate_declaration_overflow_x(modest_t* modest, myhtml_tree_node_t* node, mycss_declaration_entry_t* decl, modest_style_raw_specificity_t* spec);
void modest_style_map_collate_declaration_overflow_y(modest_t* modest, myhtml_tree_node_t* node, mycss_declaration_entry_t* decl, modest_style_raw_specificity_t* spec);
void modest_style_map_collate_declaration_padding(modest_t* modest, myhtml_tree_node_t* node, mycss_declaration_entry_t* decl, modest_style_raw_specificity_t* spec);
void modest_style_map_collate_declaration_padding_block_end(modest_t* modest, myhtml_tree_node_t* node, mycss_declaration_entry_t* decl, modest_style_raw_specificity_t* spec);
void modest_style_map_collate_declaration_padding_block_start(modest_t* modest, myhtml_tree_node_t* node, mycss_declaration_entry_t* decl, modest_style_raw_specificity_t* spec);
void modest_style_map_collate_declaration_padding_bottom(modest_t* modest, myhtml_tree_node_t* node, mycss_declaration_entry_t* decl, modest_style_raw_specificity_t* spec);
void modest_style_map_collate_declaration_padding_inline_end(modest_t* modest, myhtml_tree_node_t* node, mycss_declaration_entry_t* decl, modest_style_raw_specificity_t* spec);
void modest_style_map_collate_declaration_padding_inline_start(modest_t* modest, myhtml_tree_node_t* node, mycss_declaration_entry_t* decl, modest_style_raw_specificity_t* spec);
void modest_style_map_collate_declaration_padding_left(modest_t* modest, myhtml_tree_node_t* node, mycss_declaration_entry_t* decl, modest_style_raw_specificity_t* spec);
void modest_style_map_collate_declaration_padding_right(modest_t* modest, myhtml_tree_node_t* node, mycss_declaration_entry_t* decl, modest_style_raw_specificity_t* spec);
void modest_style_map_collate_declaration_padding_top(modest_t* modest, myhtml_tree_node_t* node, mycss_declaration_entry_t* decl, modest_style_raw_specificity_t* spec);

View File

@ -52,6 +52,14 @@ static const modest_style_map_collate_f modest_style_map_static_collate_declarat
modest_style_map_collate_declaration_bookmark_level,
modest_style_map_collate_declaration_bookmark_state,
modest_style_map_collate_declaration_border,
modest_style_map_collate_declaration_border_block_end,
modest_style_map_collate_declaration_border_block_end_color,
modest_style_map_collate_declaration_border_block_end_style,
modest_style_map_collate_declaration_border_block_end_width,
modest_style_map_collate_declaration_border_block_start,
modest_style_map_collate_declaration_border_block_start_color,
modest_style_map_collate_declaration_border_block_start_style,
modest_style_map_collate_declaration_border_block_start_width,
modest_style_map_collate_declaration_border_bottom,
modest_style_map_collate_declaration_border_bottom_color,
modest_style_map_collate_declaration_border_bottom_left_radius,
@ -65,6 +73,14 @@ static const modest_style_map_collate_f modest_style_map_static_collate_declarat
modest_style_map_collate_declaration_border_image_repeat,
modest_style_map_collate_declaration_border_image_slice,
modest_style_map_collate_declaration_border_image_width,
modest_style_map_collate_declaration_border_inline_end,
modest_style_map_collate_declaration_border_inline_end_color,
modest_style_map_collate_declaration_border_inline_end_style,
modest_style_map_collate_declaration_border_inline_end_width,
modest_style_map_collate_declaration_border_inline_start,
modest_style_map_collate_declaration_border_inline_start_color,
modest_style_map_collate_declaration_border_inline_start_style,
modest_style_map_collate_declaration_border_inline_start_width,
modest_style_map_collate_declaration_border_left,
modest_style_map_collate_declaration_border_left_color,
modest_style_map_collate_declaration_border_left_style,
@ -171,7 +187,11 @@ static const modest_style_map_collate_f modest_style_map_static_collate_declarat
modest_style_map_collate_declaration_list_style_position,
modest_style_map_collate_declaration_list_style_type,
modest_style_map_collate_declaration_margin,
modest_style_map_collate_declaration_margin_block_end,
modest_style_map_collate_declaration_margin_block_start,
modest_style_map_collate_declaration_margin_bottom,
modest_style_map_collate_declaration_margin_inline_end,
modest_style_map_collate_declaration_margin_inline_start,
modest_style_map_collate_declaration_margin_left,
modest_style_map_collate_declaration_margin_right,
modest_style_map_collate_declaration_margin_top,
@ -206,7 +226,11 @@ static const modest_style_map_collate_f modest_style_map_static_collate_declarat
modest_style_map_collate_declaration_overflow_x,
modest_style_map_collate_declaration_overflow_y,
modest_style_map_collate_declaration_padding,
modest_style_map_collate_declaration_padding_block_end,
modest_style_map_collate_declaration_padding_block_start,
modest_style_map_collate_declaration_padding_bottom,
modest_style_map_collate_declaration_padding_inline_end,
modest_style_map_collate_declaration_padding_inline_start,
modest_style_map_collate_declaration_padding_left,
modest_style_map_collate_declaration_padding_right,
modest_style_map_collate_declaration_padding_top,

View File

@ -53,6 +53,14 @@ static mycss_callback_declaration_destroy_f mycss_declaration_entry_destroy_map_
mycss_declaration_entry_destroy_undef,
mycss_declaration_entry_destroy_border_x,
mycss_declaration_entry_destroy_border_x,
mycss_declaration_entry_destroy_border_color,
mycss_declaration_entry_destroy_border_style,
mycss_declaration_entry_destroy_border_width,
mycss_declaration_entry_destroy_border_x,
mycss_declaration_entry_destroy_border_color,
mycss_declaration_entry_destroy_border_style,
mycss_declaration_entry_destroy_border_width,
mycss_declaration_entry_destroy_border_x,
mycss_declaration_entry_destroy_undef,
mycss_declaration_entry_destroy_border_bottom_left_radius,
mycss_declaration_entry_destroy_border_bottom_right_radius,
@ -66,6 +74,14 @@ static mycss_callback_declaration_destroy_f mycss_declaration_entry_destroy_map_
mycss_declaration_entry_destroy_undef,
mycss_declaration_entry_destroy_undef,
mycss_declaration_entry_destroy_border_x,
mycss_declaration_entry_destroy_border_color,
mycss_declaration_entry_destroy_border_style,
mycss_declaration_entry_destroy_border_width,
mycss_declaration_entry_destroy_border_x,
mycss_declaration_entry_destroy_border_color,
mycss_declaration_entry_destroy_border_style,
mycss_declaration_entry_destroy_border_width,
mycss_declaration_entry_destroy_border_x,
mycss_declaration_entry_destroy_undef,
mycss_declaration_entry_destroy_undef,
mycss_declaration_entry_destroy_undef,
@ -205,6 +221,10 @@ static mycss_callback_declaration_destroy_f mycss_declaration_entry_destroy_map_
mycss_declaration_entry_destroy_undef,
mycss_declaration_entry_destroy_undef,
mycss_declaration_entry_destroy_undef,
mycss_declaration_entry_destroy_undef,
mycss_declaration_entry_destroy_undef,
mycss_declaration_entry_destroy_undef,
mycss_declaration_entry_destroy_undef,
mycss_declaration_entry_destroy_padding,
mycss_declaration_entry_destroy_undef,
mycss_declaration_entry_destroy_undef,
@ -305,6 +325,10 @@ static mycss_callback_declaration_destroy_f mycss_declaration_entry_destroy_map_
mycss_declaration_entry_destroy_undef,
mycss_declaration_entry_destroy_undef,
mycss_declaration_entry_destroy_undef,
mycss_declaration_entry_destroy_undef,
mycss_declaration_entry_destroy_undef,
mycss_declaration_entry_destroy_undef,
mycss_declaration_entry_destroy_undef,
mycss_declaration_entry_destroy_undef
};

View File

@ -53,6 +53,14 @@ static mycss_declaration_serialization_f mycss_declaration_serialization_map_by_
mycss_declaration_serialization_undef,
mycss_declaration_serialization_border_x,
mycss_declaration_serialization_border_x,
mycss_declaration_serialization_shorthand_four,
mycss_declaration_serialization_shorthand_four,
mycss_declaration_serialization_shorthand_four,
mycss_declaration_serialization_border_x,
mycss_declaration_serialization_shorthand_four,
mycss_declaration_serialization_shorthand_four,
mycss_declaration_serialization_shorthand_four,
mycss_declaration_serialization_border_x,
mycss_declaration_serialization_undef,
mycss_declaration_serialization_shorthand_two_type,
mycss_declaration_serialization_shorthand_two_type,
@ -66,6 +74,14 @@ static mycss_declaration_serialization_f mycss_declaration_serialization_map_by_
mycss_declaration_serialization_undef,
mycss_declaration_serialization_undef,
mycss_declaration_serialization_border_x,
mycss_declaration_serialization_shorthand_four,
mycss_declaration_serialization_shorthand_four,
mycss_declaration_serialization_shorthand_four,
mycss_declaration_serialization_border_x,
mycss_declaration_serialization_shorthand_four,
mycss_declaration_serialization_shorthand_four,
mycss_declaration_serialization_shorthand_four,
mycss_declaration_serialization_border_x,
mycss_declaration_serialization_undef,
mycss_declaration_serialization_undef,
mycss_declaration_serialization_undef,
@ -205,6 +221,10 @@ static mycss_declaration_serialization_f mycss_declaration_serialization_map_by_
mycss_declaration_serialization_undef,
mycss_declaration_serialization_undef,
mycss_declaration_serialization_undef,
mycss_declaration_serialization_undef,
mycss_declaration_serialization_undef,
mycss_declaration_serialization_undef,
mycss_declaration_serialization_undef,
mycss_declaration_serialization_shorthand_four,
mycss_declaration_serialization_undef,
mycss_declaration_serialization_undef,
@ -253,6 +273,10 @@ static mycss_declaration_serialization_f mycss_declaration_serialization_map_by_
mycss_declaration_serialization_undef,
mycss_declaration_serialization_undef,
mycss_declaration_serialization_undef,
mycss_declaration_serialization_undef,
mycss_declaration_serialization_undef,
mycss_declaration_serialization_undef,
mycss_declaration_serialization_undef,
mycss_declaration_serialization_text_decoration,
mycss_declaration_serialization_undef,
mycss_declaration_serialization_text_decoration_line,

File diff suppressed because it is too large Load Diff

View File

@ -93,6 +93,14 @@ bool mycss_property_parser_bookmark_label(mycss_entry_t* entry, mycss_token_t* t
bool mycss_property_parser_bookmark_level(mycss_entry_t* entry, mycss_token_t* token, bool last_response);
bool mycss_property_parser_bookmark_state(mycss_entry_t* entry, mycss_token_t* token, bool last_response);
bool mycss_property_parser_border(mycss_entry_t* entry, mycss_token_t* token, bool last_response);
bool mycss_property_parser_border_block_end(mycss_entry_t* entry, mycss_token_t* token, bool last_response);
bool mycss_property_parser_border_block_end_color(mycss_entry_t* entry, mycss_token_t* token, bool last_response);
bool mycss_property_parser_border_block_end_style(mycss_entry_t* entry, mycss_token_t* token, bool last_response);
bool mycss_property_parser_border_block_end_width(mycss_entry_t* entry, mycss_token_t* token, bool last_response);
bool mycss_property_parser_border_block_start(mycss_entry_t* entry, mycss_token_t* token, bool last_response);
bool mycss_property_parser_border_block_start_color(mycss_entry_t* entry, mycss_token_t* token, bool last_response);
bool mycss_property_parser_border_block_start_style(mycss_entry_t* entry, mycss_token_t* token, bool last_response);
bool mycss_property_parser_border_block_start_width(mycss_entry_t* entry, mycss_token_t* token, bool last_response);
bool mycss_property_parser_border_bottom(mycss_entry_t* entry, mycss_token_t* token, bool last_response);
bool mycss_property_parser_border_bottom_color(mycss_entry_t* entry, mycss_token_t* token, bool last_response);
bool mycss_property_parser_border_bottom_left_radius(mycss_entry_t* entry, mycss_token_t* token, bool last_response);
@ -106,6 +114,14 @@ bool mycss_property_parser_border_image_outset(mycss_entry_t* entry, mycss_token
bool mycss_property_parser_border_image_repeat(mycss_entry_t* entry, mycss_token_t* token, bool last_response);
bool mycss_property_parser_border_image_slice(mycss_entry_t* entry, mycss_token_t* token, bool last_response);
bool mycss_property_parser_border_image_width(mycss_entry_t* entry, mycss_token_t* token, bool last_response);
bool mycss_property_parser_border_inline_end(mycss_entry_t* entry, mycss_token_t* token, bool last_response);
bool mycss_property_parser_border_inline_end_color(mycss_entry_t* entry, mycss_token_t* token, bool last_response);
bool mycss_property_parser_border_inline_end_style(mycss_entry_t* entry, mycss_token_t* token, bool last_response);
bool mycss_property_parser_border_inline_end_width(mycss_entry_t* entry, mycss_token_t* token, bool last_response);
bool mycss_property_parser_border_inline_start(mycss_entry_t* entry, mycss_token_t* token, bool last_response);
bool mycss_property_parser_border_inline_start_color(mycss_entry_t* entry, mycss_token_t* token, bool last_response);
bool mycss_property_parser_border_inline_start_style(mycss_entry_t* entry, mycss_token_t* token, bool last_response);
bool mycss_property_parser_border_inline_start_width(mycss_entry_t* entry, mycss_token_t* token, bool last_response);
bool mycss_property_parser_border_left(mycss_entry_t* entry, mycss_token_t* token, bool last_response);
bool mycss_property_parser_border_left_color(mycss_entry_t* entry, mycss_token_t* token, bool last_response);
bool mycss_property_parser_border_left_style(mycss_entry_t* entry, mycss_token_t* token, bool last_response);
@ -212,7 +228,11 @@ bool mycss_property_parser_list_style_image(mycss_entry_t* entry, mycss_token_t*
bool mycss_property_parser_list_style_position(mycss_entry_t* entry, mycss_token_t* token, bool last_response);
bool mycss_property_parser_list_style_type(mycss_entry_t* entry, mycss_token_t* token, bool last_response);
bool mycss_property_parser_margin(mycss_entry_t* entry, mycss_token_t* token, bool last_response);
bool mycss_property_parser_margin_block_end(mycss_entry_t* entry, mycss_token_t* token, bool last_response);
bool mycss_property_parser_margin_block_start(mycss_entry_t* entry, mycss_token_t* token, bool last_response);
bool mycss_property_parser_margin_bottom(mycss_entry_t* entry, mycss_token_t* token, bool last_response);
bool mycss_property_parser_margin_inline_end(mycss_entry_t* entry, mycss_token_t* token, bool last_response);
bool mycss_property_parser_margin_inline_start(mycss_entry_t* entry, mycss_token_t* token, bool last_response);
bool mycss_property_parser_margin_left(mycss_entry_t* entry, mycss_token_t* token, bool last_response);
bool mycss_property_parser_margin_right(mycss_entry_t* entry, mycss_token_t* token, bool last_response);
bool mycss_property_parser_margin_top(mycss_entry_t* entry, mycss_token_t* token, bool last_response);
@ -247,7 +267,11 @@ bool mycss_property_parser_overflow_wrap(mycss_entry_t* entry, mycss_token_t* to
bool mycss_property_parser_overflow_x(mycss_entry_t* entry, mycss_token_t* token, bool last_response);
bool mycss_property_parser_overflow_y(mycss_entry_t* entry, mycss_token_t* token, bool last_response);
bool mycss_property_parser_padding(mycss_entry_t* entry, mycss_token_t* token, bool last_response);
bool mycss_property_parser_padding_block_end(mycss_entry_t* entry, mycss_token_t* token, bool last_response);
bool mycss_property_parser_padding_block_start(mycss_entry_t* entry, mycss_token_t* token, bool last_response);
bool mycss_property_parser_padding_bottom(mycss_entry_t* entry, mycss_token_t* token, bool last_response);
bool mycss_property_parser_padding_inline_end(mycss_entry_t* entry, mycss_token_t* token, bool last_response);
bool mycss_property_parser_padding_inline_start(mycss_entry_t* entry, mycss_token_t* token, bool last_response);
bool mycss_property_parser_padding_left(mycss_entry_t* entry, mycss_token_t* token, bool last_response);
bool mycss_property_parser_padding_right(mycss_entry_t* entry, mycss_token_t* token, bool last_response);
bool mycss_property_parser_padding_top(mycss_entry_t* entry, mycss_token_t* token, bool last_response);

File diff suppressed because it is too large Load Diff

View File

@ -52,6 +52,14 @@ static const char * mycss_property_index_type_name[] =
"bookmark-level",
"bookmark-state",
"border",
"border-block-end",
"border-block-end-color",
"border-block-end-style",
"border-block-end-width",
"border-block-start",
"border-block-start-color",
"border-block-start-style",
"border-block-start-width",
"border-bottom",
"border-bottom-color",
"border-bottom-left-radius",
@ -65,6 +73,14 @@ static const char * mycss_property_index_type_name[] =
"border-image-repeat",
"border-image-slice",
"border-image-width",
"border-inline-end",
"border-inline-end-color",
"border-inline-end-style",
"border-inline-end-width",
"border-inline-start",
"border-inline-start-color",
"border-inline-start-style",
"border-inline-start-width",
"border-left",
"border-left-color",
"border-left-style",
@ -171,7 +187,11 @@ static const char * mycss_property_index_type_name[] =
"list-style-position",
"list-style-type",
"margin",
"margin-block-end",
"margin-block-start",
"margin-bottom",
"margin-inline-end",
"margin-inline-start",
"margin-left",
"margin-right",
"margin-top",
@ -206,7 +226,11 @@ static const char * mycss_property_index_type_name[] =
"overflow-x",
"overflow-y",
"padding",
"padding-block-end",
"padding-block-start",
"padding-bottom",
"padding-inline-end",
"padding-inline-start",
"padding-left",
"padding-right",
"padding-top",