Code coverage report for stylus-lint/src/checks/validHTML.js

Statements: 50% (1 / 2)      Branches: 100% (0 / 0)      Functions: 0% (0 / 1)      Lines: 50% (1 / 2)      Ignored: none     

All files » stylus-lint/src/checks/ » validHTML.js
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 1251                                                                                                                                                                                                                                                        
module.exports = function getValidHTML() {
    'use strict';
    return [
        'a',
        'abbr',
        'abel',
        'acronym',
        'address',
        'applet',
        'area',
        'article',
        'aside',
        'audio',
        'b',
        'bdi',
        'bdo',
        'big',
        'blockquote',
        'body',
        'button',
        'button[disabled]',
        'br',
        'caption',
        'canvas',
        'cite',
        'code',
        'col',
        'colgroup',
        'data',
        'datalist',
        'dd',
        'del',
        'details',
        'dfn',
        'div',
        'dl',
        'dt',
        'em',
        'fieldset',
        'figure',
        'figcaption',
        'footer',
        'form',
        'h1',
        'h2',
        'h3',
        'h4',
        'h5',
        'h6',
        'hr',
        'html',
        'i',
        'iframe',
        'img',
        'input',
        'input[disabled]',
        'input[type=submit]',
        'input[type="submit"]',
        "input[type='submit']",
        'input[type=search]',
        'input[type="search"]',
        "input[type='search']",
        'input[type=button]',
        'input[type="button"]',
        "input[type='button']",
        'input[type=reset]',
        'input[type="reset"]',
        "input[type='reset']",
        'ins',
        'kbd',
        'keygen',
        'label',
        'legend',
        'li',
        'main',
        'map',
        'mark',
        'math',
        'menu',
        'menuitem',
        'meter',
        'nav',
        'object',
        'ol',
        'optgroup',
        'option',
        'output',
        'param',
        'p',
        'pre',
        'progress',
        'q',
        'ruby',
        'rt',
        'rp',
        's',
        'samp',
        'section',
        'select',
        'small',
        'source',
        'span',
        'strike',
        'strong',
        'sub',
        'sup',
        'summary',
        'svg',
        'table',
        'tbody',
        'td',
        'textarea',
        'tfoot',
        'th',
        'thead',
        'time',
        'tr',
        'track',
        'tt',
        'ul',
        'var',
        'video',
        'wbr'
    ];
}