fractal-core
Version:
A minimalist and well crafted app, content or component is our conviction
41 lines • 954 B
JavaScript
;
// All SVG children elements, not in this list, should self-close
Object.defineProperty(exports, "__esModule", { value: true });
exports.CONTAINER = {
// http://www.w3.org/TR/SVG/intro.html#TermContainerElement
'a': true,
'defs': true,
'glyph': true,
'g': true,
'marker': true,
'mask': true,
'missing-glyph': true,
'pattern': true,
'svg': true,
'switch': true,
'symbol': true,
'text': true,
// http://www.w3.org/TR/SVG/intro.html#TermDescriptiveElement
'desc': true,
'metadata': true,
'title': true
};
// http://www.w3.org/html/wg/drafts/html/master/syntax.html#void-elements
exports.VOID = {
area: true,
base: true,
br: true,
col: true,
embed: true,
hr: true,
img: true,
input: true,
keygen: true,
link: true,
meta: true,
param: true,
source: true,
track: true,
wbr: true
};
//# sourceMappingURL=elements.js.map