From 4e11f6f8bed2a5ee107a38777abd766148475514 Mon Sep 17 00:00:00 2001 From: Witold Filipczyk Date: Sun, 7 Jan 2024 20:11:00 +0100 Subject: [PATCH] [html5] Also add NAV element. Refs #282 (cherry picked from commit 103669e825cb7894cdaa66c8fa80a7de54ac4c24) --- src/document/html/parser/parse.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/document/html/parser/parse.c b/src/document/html/parser/parse.c index 400e3db5d..aefc95db4 100644 --- a/src/document/html/parser/parse.c +++ b/src/document/html/parser/parse.c @@ -502,6 +502,7 @@ static struct element_info elements[] = { {"MAIN", html_main, NULL, 0, ET_NON_NESTABLE}, {"MENU", html_ul, NULL, 2, ET_NESTABLE }, {"META", html_meta, NULL, 0, ET_NON_PAIRABLE}, + {"NAV", html_linebrk, NULL, 1, ET_NESTABLE }, {"NOFRAMES", html_noframes, NULL, 0, ET_NESTABLE }, {"NOSCRIPT", html_noscript, NULL, 0, ET_NESTABLE }, {"OBJECT", html_object, NULL, 1, ET_NON_PAIRABLE},