From 24651f9ee587989dbfed85a58816d9674b5c263b Mon Sep 17 00:00:00 2001 From: Loris Cro Date: Thu, 12 Sep 2024 03:28:01 +0200 Subject: [PATCH] fix list of unsupported tags A previous commit sourced the list of tag names from an old HTML spec. The list has now been updated following the HTML living spec. https://html.spec.whatwg.org/#non-conforming-features --- src/html/Ast.zig | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/html/Ast.zig b/src/html/Ast.zig index 36f3f60..49bcf4f 100644 --- a/src/html/Ast.zig +++ b/src/html/Ast.zig @@ -35,12 +35,16 @@ const unsupported_names = TagNameMap.initComptime(.{ .{ "frame", {} }, .{ "frameset", {} }, .{ "noframes", {} }, - .{ "hgroup", {} }, .{ "isindex", {} }, + .{ "keygen", {} }, .{ "listing", {} }, + .{ "menuitem", {} }, .{ "nextid", {} }, .{ "noembed", {} }, + .{ "param", {} }, .{ "plaintext", {} }, + .{ "rb", {} }, + .{ "rtc", {} }, .{ "strike", {} }, .{ "xmp", {} }, .{ "basefont", {} },