Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(819)

Side by Side Diff: third_party/WebKit/LayoutTests/imported/web-platform-tests/html/semantics/interfaces.js

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

Powered by Google App Engine
This is Rietveld 408576698