Give anonymous dom structs a name (#13135)

This commit is contained in:
Niels Dossche 2024-01-13 11:34:40 +01:00 committed by GitHub
parent 90785dd865
commit 89ea24f63e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 9 additions and 9 deletions

View file

@ -42,13 +42,13 @@ typedef void (*lexbor_libxml2_bridge_tree_error_reporter)(
size_t len
);
typedef struct {
typedef struct _lexbor_libxml2_bridge_extracted_observations {
bool has_explicit_html_tag;
bool has_explicit_head_tag;
bool has_explicit_body_tag;
} lexbor_libxml2_bridge_extracted_observations;
typedef struct {
typedef struct _lexbor_libxml2_bridge_parse_context {
/* Private fields */
lexbor_libxml2_bridge_tokenizer_error_reporter tokenizer_error_reporter;
lexbor_libxml2_bridge_tree_error_reporter tree_error_reporter;