Path: blob/master/venv/Lib/site-packages/lxml/html/defs.py
811 views
# FIXME: this should all be confirmed against what a DTD says1# (probably in a test; this may not match the DTD exactly, but we2# should document just how it differs).34# Data taken from http://www.w3.org/TR/html401/index/elements.html5# and http://www.w3.org/community/webed/wiki/HTML/New_HTML5_Elements6# for html5_tags.78empty_tags = frozenset([9'area', 'base', 'basefont', 'br', 'col', 'frame', 'hr',10'img', 'input', 'isindex', 'link', 'meta', 'param', 'source', 'track'])1112deprecated_tags = frozenset([13'applet', 'basefont', 'center', 'dir', 'font', 'isindex',14'menu', 's', 'strike', 'u'])1516# archive actually takes a space-separated list of URIs17link_attrs = frozenset([18'action', 'archive', 'background', 'cite', 'classid',19'codebase', 'data', 'href', 'longdesc', 'profile', 'src',20'usemap',21# Not standard:22'dynsrc', 'lowsrc',23])2425# Not in the HTML 4 spec:26# onerror, onresize27event_attrs = frozenset([28'onblur', 'onchange', 'onclick', 'ondblclick', 'onerror',29'onfocus', 'onkeydown', 'onkeypress', 'onkeyup', 'onload',30'onmousedown', 'onmousemove', 'onmouseout', 'onmouseover',31'onmouseup', 'onreset', 'onresize', 'onselect', 'onsubmit',32'onunload',33])3435safe_attrs = frozenset([36'abbr', 'accept', 'accept-charset', 'accesskey', 'action', 'align',37'alt', 'axis', 'border', 'cellpadding', 'cellspacing', 'char', 'charoff',38'charset', 'checked', 'cite', 'class', 'clear', 'cols', 'colspan',39'color', 'compact', 'coords', 'datetime', 'dir', 'disabled', 'enctype',40'for', 'frame', 'headers', 'height', 'href', 'hreflang', 'hspace', 'id',41'ismap', 'label', 'lang', 'longdesc', 'maxlength', 'media', 'method',42'multiple', 'name', 'nohref', 'noshade', 'nowrap', 'prompt', 'readonly',43'rel', 'rev', 'rows', 'rowspan', 'rules', 'scope', 'selected', 'shape',44'size', 'span', 'src', 'start', 'summary', 'tabindex', 'target', 'title',45'type', 'usemap', 'valign', 'value', 'vspace', 'width'])4647# From http://htmlhelp.com/reference/html40/olist.html48top_level_tags = frozenset([49'html', 'head', 'body', 'frameset',50])5152head_tags = frozenset([53'base', 'isindex', 'link', 'meta', 'script', 'style', 'title',54])5556general_block_tags = frozenset([57'address',58'blockquote',59'center',60'del',61'div',62'h1',63'h2',64'h3',65'h4',66'h5',67'h6',68'hr',69'ins',70'isindex',71'noscript',72'p',73'pre',74])7576list_tags = frozenset([77'dir', 'dl', 'dt', 'dd', 'li', 'menu', 'ol', 'ul',78])7980table_tags = frozenset([81'table', 'caption', 'colgroup', 'col',82'thead', 'tfoot', 'tbody', 'tr', 'td', 'th',83])8485# just this one from86# http://www.georgehernandez.com/h/XComputers/HTML/2BlockLevel.htm87block_tags = general_block_tags | list_tags | table_tags | frozenset([88# Partial form tags89'fieldset', 'form', 'legend', 'optgroup', 'option',90])9192form_tags = frozenset([93'form', 'button', 'fieldset', 'legend', 'input', 'label',94'select', 'optgroup', 'option', 'textarea',95])9697special_inline_tags = frozenset([98'a', 'applet', 'basefont', 'bdo', 'br', 'embed', 'font', 'iframe',99'img', 'map', 'area', 'object', 'param', 'q', 'script',100'span', 'sub', 'sup',101])102103phrase_tags = frozenset([104'abbr', 'acronym', 'cite', 'code', 'del', 'dfn', 'em',105'ins', 'kbd', 'samp', 'strong', 'var',106])107108font_style_tags = frozenset([109'b', 'big', 'i', 's', 'small', 'strike', 'tt', 'u',110])111112frame_tags = frozenset([113'frameset', 'frame', 'noframes',114])115116html5_tags = frozenset([117'article', 'aside', 'audio', 'canvas', 'command', 'datalist',118'details', 'embed', 'figcaption', 'figure', 'footer', 'header',119'hgroup', 'keygen', 'mark', 'math', 'meter', 'nav', 'output',120'progress', 'rp', 'rt', 'ruby', 'section', 'source', 'summary',121'svg', 'time', 'track', 'video', 'wbr'122])123124# These tags aren't standard125nonstandard_tags = frozenset(['blink', 'marquee'])126127128tags = (top_level_tags | head_tags | general_block_tags | list_tags129| table_tags | form_tags | special_inline_tags | phrase_tags130| font_style_tags | nonstandard_tags | html5_tags)131132133