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

Side by Side Diff: third_party/WebKit/LayoutTests/imported/web-platform-tests/html/dom/elements-obsolete.js

Issue 1666363003: Import web-platform-tests@27e3d93f88a71a249d1df872a5d613b3243b9588 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Missed win failiure in TestExpectations Created 4 years, 10 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
1 // Up-to-date as of 2013-04-13. 1 // Up-to-date as of 2013-04-13.
2 var obsoleteElements = { 2 var obsoleteElements = {
3 // https://html.spec.whatwg.org/multipage/#the-applet-element
3 applet: { 4 applet: {
4 align: "string", 5 align: "string",
5 alt: "string", 6 alt: "string",
6 archive: "string", 7 archive: "string",
7 code: "string", 8 code: "string",
8 codeBase: "url", 9 codeBase: "url",
9 height: "string", 10 height: "string",
10 hspace: "unsigned long", 11 hspace: "unsigned long",
11 name: "string", 12 name: "string",
12 object: "url", 13 object: "url",
13 vspace: "unsigned long", 14 vspace: "unsigned long",
14 width: "string", 15 width: "string",
15 }, 16 },
17 // https://html.spec.whatwg.org/multipage/#the-marquee-element-2
16 marquee: { 18 marquee: {
17 behavior: "string", 19 behavior: "string",
18 bgColor: "string", 20 bgColor: "string",
19 direction: "string", 21 direction: "string",
20 height: "string", 22 height: "string",
21 hspace: "unsigned long", 23 hspace: "unsigned long",
22 scrollAmount: {type: "unsigned long", defaultVal: 6}, 24 scrollAmount: {type: "unsigned long", defaultVal: 6},
23 scrollDelay: {type: "unsigned long", defaultVal: 85}, 25 scrollDelay: {type: "unsigned long", defaultVal: 85},
24 trueSpeed: "boolean", 26 trueSpeed: "boolean",
25 vspace: "unsigned long", 27 vspace: "unsigned long",
26 width: "string", 28 width: "string",
27 }, 29 },
30 // https://html.spec.whatwg.org/multipage/#frameset
28 frameset: { 31 frameset: {
29 cols: "string", 32 cols: "string",
30 rows: "string", 33 rows: "string",
31 }, 34 },
35 // https://html.spec.whatwg.org/multipage/#frame
32 frame: { 36 frame: {
33 name: "string", 37 name: "string",
34 scrolling: "string", 38 scrolling: "string",
35 src: "url", 39 src: "url",
36 frameBorder: "string", 40 frameBorder: "string",
37 longDesc: "url", 41 longDesc: "url",
38 noResize: "boolean", 42 noResize: "boolean",
39 marginHeight: {type: "string", treatNullAsEmptyString: true}, 43 marginHeight: {type: "string", treatNullAsEmptyString: true},
40 marginWidth: {type: "string", treatNullAsEmptyString: true}, 44 marginWidth: {type: "string", treatNullAsEmptyString: true},
41 }, 45 },
46 // https://html.spec.whatwg.org/multipage/#htmldirectoryelement
42 dir: { 47 dir: {
43 compact: "boolean", 48 compact: "boolean",
44 }, 49 },
50 // https://html.spec.whatwg.org/multipage/#htmlfontelement
45 font: { 51 font: {
46 color: {type: "string", treatNullAsEmptyString: true}, 52 color: {type: "string", treatNullAsEmptyString: true},
47 face: "string", 53 face: "string",
48 size: "string", 54 size: "string",
49 }, 55 },
50 }; 56 };
51 57
52 mergeElements(obsoleteElements); 58 mergeElements(obsoleteElements);
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698