diff options
Diffstat (limited to 'libtxt/html.c')
-rw-r--r-- | libtxt/html.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libtxt/html.c b/libtxt/html.c index 1d736b7..ae50ed2 100644 --- a/libtxt/html.c +++ b/libtxt/html.c @@ -86,7 +86,7 @@ static struct dom *generate_dom(char *data, u32 length) memcpy(&name, (u8 *)buffer + token->start_pos, token->end_pos - token->start_pos); name[token->end_pos - token->start_pos] = '\0'; - assert(current && !strcmp(name, current->tag)); + assert(current && !strcmp(normalize_tag_name(name), current->tag)); current = current->parent; break; case XML_CHARACTER: |