From 6ab5c7fa6fdc0f75a5c82f89d801f80c00728284 Mon Sep 17 00:00:00 2001 From: James Bradbury Date: Fri, 31 Dec 2021 16:26:54 +0000 Subject: [PATCH] remove case caught by (this.name === value) --- src/compiler/compile/nodes/Element.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/compiler/compile/nodes/Element.ts b/src/compiler/compile/nodes/Element.ts index 6122ba473a..bf81599bf6 100644 --- a/src/compiler/compile/nodes/Element.ts +++ b/src/compiler/compile/nodes/Element.ts @@ -77,7 +77,6 @@ const a11y_nested_implicit_semantics = new Map([ const a11y_implicit_semantics = new Map([ ['a', 'link'], - ['article', 'article'], ['aside', 'complementary'], ['body', 'document'], ['datalist', 'listbox'],