tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

interfaces.js (3246B)


      1 var elements = [
      2  ["a", "Anchor"],
      3  ["abbr", ""],
      4  ["acronym", ""],
      5  ["address", ""],
      6  ["applet", "Unknown"],
      7  ["area", "Area"],
      8  ["article", ""],
      9  ["aside", ""],
     10  ["attachment", "Unknown"],
     11  ["audio", "Audio"],
     12  ["b", ""],
     13  ["base", "Base"],
     14  ["basefont", ""],
     15  ["bdi", ""],
     16  ["bdo", ""],
     17  ["bgsound", "Unknown"],
     18  ["big", ""],
     19  ["blink", "Unknown"],
     20  ["blockquote", "Quote"],
     21  ["body", "Body"],
     22  ["br", "BR"],
     23  ["button", "Button"],
     24  ["canvas", "Canvas"],
     25  ["caption", "TableCaption"],
     26  ["center", ""],
     27  ["cite", ""],
     28  ["code", ""],
     29  ["col", "TableCol"],
     30  ["colgroup", "TableCol"],
     31  ["command", "Unknown"],
     32  ["data", "Data"],
     33  ["datalist", "DataList"],
     34  ["dd", ""],
     35  ["del", "Mod"],
     36  ["details", "Details"],
     37  ["dfn", ""],
     38  ["dialog", "Dialog"],
     39  ["dir", "Directory"],
     40  ["directory", "Unknown"],
     41  ["div", "Div"],
     42  ["dl", "DList"],
     43  ["dt", ""],
     44  ["em", ""],
     45  ["embed", "Embed"],
     46  ["fieldset", "FieldSet"],
     47  ["figcaption", ""],
     48  ["figure", ""],
     49  ["font", "Font"],
     50  ["foo-BAR", "Unknown"], // not a valid custom element name
     51  ["foo-bar", ""], // valid custom element name
     52  ["foo", "Unknown"],
     53  ["footer", ""],
     54  ["form", "Form"],
     55  ["frame", "Frame"],
     56  ["frameset", "FrameSet"],
     57  ["h1", "Heading"],
     58  ["h2", "Heading"],
     59  ["h3", "Heading"],
     60  ["h4", "Heading"],
     61  ["h5", "Heading"],
     62  ["h6", "Heading"],
     63  ["head", "Head"],
     64  ["header", ""],
     65  ["hgroup", ""],
     66  ["hr", "HR"],
     67  ["html", "Html"],
     68  ["i", ""],
     69  ["iframe", "IFrame"],
     70  ["image", "Unknown"],
     71  ["img", "Image"],
     72  ["input", "Input"],
     73  ["ins", "Mod"],
     74  ["isindex", "Unknown"],
     75  ["kbd", ""],
     76  ["keygen", "Unknown"],
     77  ["label", "Label"],
     78  ["layer", "Unknown"],
     79  ["legend", "Legend"],
     80  ["li", "LI"],
     81  ["link", "Link"],
     82  ["listing", "Pre"],
     83  ["main", ""],
     84  ["map", "Map"],
     85  ["mark", ""],
     86  ["marquee", "Marquee"],
     87  ["menu", "Menu"],
     88  ["meta", "Meta"],
     89  ["meter", "Meter"],
     90  ["mod", "Unknown"],
     91  ["multicol", "Unknown"],
     92  ["nav", ""],
     93  ["nextid", "Unknown"],
     94  ["nobr", ""],
     95  ["noembed", ""],
     96  ["noframes", ""],
     97  ["nolayer", "Unknown"],
     98  ["noscript", ""],
     99  ["object", "Object"],
    100  ["ol", "OList"],
    101  ["optgroup", "OptGroup"],
    102  ["option", "Option"],
    103  ["output", "Output"],
    104  ["p", "Paragraph"],
    105  ["param", "Param"],
    106  ["picture", "Picture"],
    107  ["plaintext", ""],
    108  ["pre", "Pre"],
    109  ["progress", "Progress"],
    110  ["q", "Quote"],
    111  ["quasit", "Unknown"],
    112  ["rb", ""],
    113  ["rp", ""],
    114  ["rt", ""],
    115  ["rtc", ""],
    116  ["ruby", ""],
    117  ["s", ""],
    118  ["samp", ""],
    119  ["script", "Script"],
    120  ["section", ""],
    121  ["select", "Select"],
    122  ["slot", "Slot"],
    123  ["small", ""],
    124  ["source", "Source"],
    125  ["spacer", "Unknown"],
    126  ["span", "Span"],
    127  ["strike", ""],
    128  ["strong", ""],
    129  ["style", "Style"],
    130  ["sub", ""],
    131  ["summary", ""],
    132  ["sup", ""],
    133  ["table", "Table"],
    134  ["tbody", "TableSection"],
    135  ["td", "TableCell"],
    136  ["textarea", "TextArea"],
    137  ["tfoot", "TableSection"],
    138  ["th", "TableCell"],
    139  ["thead", "TableSection"],
    140  ["time", "Time"],
    141  ["title", "Title"],
    142  ["tr", "TableRow"],
    143  ["track", "Track"],
    144  ["tt", ""],
    145  ["u", ""],
    146  ["ul", "UList"],
    147  ["var", ""],
    148  ["video", "Video"],
    149  ["wbr", ""],
    150  ["xmp", "Pre"],
    151  ["xxx", "Unknown"],
    152  ["\u00E5-bar", "Unknown"], // not a valid custom element name
    153 ];