"""
    HTML DOM names

    Copyright (c)
    See LICENSE for details.
    <jtm@robot.is>
"""

html4 = [
    'a',
    'abbr',
    'acronym',
    'address',
    'applet',
    'area',
    'b',
    'base',
    'basefont',
    'bdo',
    'big',
    'blockquote',
    'body',
    'br',
    'button',
    'caption',
    'center',
    'cite',
    'code',
    'col',
    'colgroup',
    'dd',
    'del',
    'dfn',
    'dir',
    'div',
    'dl',
    'dt',
    'em',
    'fieldset',
    'font',
    'form',
    'frame',
    'frameset',
    'h1',
    'h2',
    'h3',
    'h4',
    'h5',
    'h6',
    'head',
    'hr',
    'html',
    'i',
    'iframe',
    'img',
    'input',
    'ins',
    'kbd',
    'label',
    'legend',
    'li',
    #    'link',
    'map',
    'mark',
    'menu',
    'meta',
    'noframes',
    'noscript',
    'object',
    'ol',
    'optgroup',
    'option',
    'p',
    'param',
    'pre',
    'q',
    's',
    'samp',
    'script',
    'select',
    'small',
    'span',
    'strike',
    'strong',
    'style',
    'sub',
    'sup',
    'table',
    'tbody',
    'td',
    'template',
    'textarea',
    'tfoot',
    'th',
    'thead',
    'title',
    'tr',
    'tt',
    'u',
    'ul',
    'var',
]

html5 = [
    'article',
    'aside',
    'audio',
    'bdi',
    'canvas',
    'command',
    'datalist',
    'details',
    'embed',
    'figcaption',
    'figure',
    'footer',
    'header',
    'hgroup',
    'keygen',
    'main',
    'mark',
    'meter',
    'nav',
    'output',
    'progress',
    ' progress-bar-stripes',
    'rp',
    'rt',
    'ruby',
    'section',
    'source',
    'summary',
    'svg',
    'time',
    'track',
    'video',
    'wbr',
    'only',  # TODO/FIXME: What is this?!?
]

svg = [
    'altGlyph',
    'altGlyphDef',
    'altGlyphItem',
    'circle',
    'desc',
    'ellipse',
    'glyphRef',
    'line',
    'path',
    'polygon',
    'polyline',
    'rect',
    'text',
    'textPath',
    'tref',
    'tspan',
]

elements = html4
elements.extend(html5)
elements.extend(svg)
