From c70f1216d7a54dcad99a83ecf4dc883265f17875 Mon Sep 17 00:00:00 2001 From: Dominique Hazael-Massieux Date: Thu, 3 Mar 2022 05:32:39 +0100 Subject: [PATCH] feat(xref): Add support for 'permission' dfn-type (#257) as discussed in https://github.com/speced/spec-dfn-contract/issues/8 See also mention in https://github.com/w3c/respec-web-services/issues/228 --- routes/xref/lib/constants.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routes/xref/lib/constants.ts b/routes/xref/lib/constants.ts index 27046cf..18c4932 100644 --- a/routes/xref/lib/constants.ts +++ b/routes/xref/lib/constants.ts @@ -16,7 +16,7 @@ export const IDL_TYPES = new Set([ // XXX: `CONCEPT_TYPES` includes `element`: otherwise it'll break many specs. // https://github.com/sidvishnoi/respec-xref-route/issues/57 -export const CONCEPT_TYPES = new Set(["_CONCEPT_", "dfn", "event", "element"]); +export const CONCEPT_TYPES = new Set(["_CONCEPT_", "dfn", "event", "element", "permission"]); export const MARKUP_TYPES = new Set(["element", "element-attr", "attr-value"]); export const CSS_TYPES_INPUT = new Set([ "property",