Skip to content

Commit

Permalink
feat(xref): Add support for 'permission' dfn-type (#257)
Browse files Browse the repository at this point in the history
as discussed in speced/spec-dfn-contract#8
See also mention in #228
  • Loading branch information
dontcallmedom authored Mar 3, 2022
1 parent bd7d767 commit c70f121
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion routes/xref/lib/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit c70f121

Please sign in to comment.