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

Side by Side Diff: third_party/WebKit/LayoutTests/imported/web-platform-tests/html/dom/elements-text.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 // Up-to-date as of 2013-04-19.
2 var textElements = {
3 a: {
4 // Conforming
5 target: "string",
6 download: "string",
7 ping: "urls",
8 rel: "string",
9 relList: {type: "tokenlist", domAttrName: "rel"},
10 hreflang: "string",
11 type: "string",
12
13 // HTMLHyperlinkElementUtils
14 href: "url",
15
16 // Obsolete
17 coords: "string",
18 charset: "string",
19 name: "string",
20 rev: "string",
21 shape: "string",
22 },
23 em: {},
24 strong: {},
25 small: {},
26 s: {},
27 cite: {},
28 q: {
29 cite: "url",
30 },
31 dfn: {},
32 abbr: {},
33 data: {
34 value: "string",
35 },
36 time: {
37 dateTime: "string",
38 },
39 code: {},
40 // Opera 11.50 doesn't allow unquoted "var" here, although ES5 does and
41 // other browsers support it.
42 "var": {},
43 samp: {},
44 kbd: {},
45 sub: {},
46 sup: {},
47 i: {},
48 b: {},
49 u: {},
50 mark: {},
51 ruby: {},
52 rt: {},
53 rp: {},
54 bdi: {},
55 bdo: {},
56 span: {},
57 br: {
58 // Obsolete
59 clear: "string",
60 },
61 wbr: {},
62 };
63
64 mergeElements(textElements);
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698