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

Side by Side Diff: third_party/WebKit/LayoutTests/imported/wpt/html/dom/elements-embedded.js

Issue 2327923003: W3C auto test import CL. (Closed)
Patch Set: Created 4 years, 3 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-06. 1 // Up-to-date as of 2013-04-06.
2 var embeddedElements = { 2 var embeddedElements = {
3 img: { 3 img: {
4 // Conforming 4 // Conforming
5 alt: "string", 5 alt: "string",
6 src: "url", 6 src: "url",
7 srcset: "string", 7 srcset: "string",
8 crossOrigin: {type: "enum", keywords: ["anonymous", "use-credentials"], nonC anon:{"": "anonymous"}, isNullable: true, defaultVal: null, invalidVal: "anonymo us"}, 8 crossOrigin: {type: "enum", keywords: ["anonymous", "use-credentials"], nonC anon:{"": "anonymous"}, isNullable: true, defaultVal: null, invalidVal: "anonymo us"},
9 useMap: "string", 9 useMap: "string",
10 isMap: "boolean", 10 isMap: "boolean",
11 width: {type: "unsigned long", customGetter: true}, 11 width: {type: "unsigned long", customGetter: true},
12 height: {type: "unsigned long", customGetter: true}, 12 height: {type: "unsigned long", customGetter: true},
13 13
14 // Obsolete 14 // Obsolete
15 name: "string", 15 name: "string",
16 lowsrc: {type: "url"}, 16 lowsrc: {type: "url"},
17 align: "string", 17 align: "string",
18 hspace: "unsigned long", 18 hspace: "unsigned long",
19 vspace: "unsigned long", 19 vspace: "unsigned long",
20 longDesc: "url", 20 longDesc: "url",
21 border: {type: "string", treatNullAsEmptyString: true}, 21 border: {type: "string", treatNullAsEmptyString: true},
22 }, 22 },
23 iframe: { 23 iframe: {
24 // Conforming 24 // Conforming
25 src: "url", 25 src: "url",
26 srcdoc: "string", 26 srcdoc: "string",
27 name: "string", 27 name: "string",
28 sandbox: "settable tokenlist", 28 sandbox: "settable tokenlist",
29 seamless: "boolean",
30 allowFullscreen: "boolean", 29 allowFullscreen: "boolean",
31 width: "string", 30 width: "string",
32 height: "string", 31 height: "string",
33 32
34 // Obsolete 33 // Obsolete
35 align: "string", 34 align: "string",
36 scrolling: "string", 35 scrolling: "string",
37 frameBorder: "string", 36 frameBorder: "string",
38 longDesc: "url", 37 longDesc: "url",
39 marginHeight: {type: "string", treatNullAsEmptyString: true}, 38 marginHeight: {type: "string", treatNullAsEmptyString: true},
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 142
144 // HTMLHyperlinkElementUtils 143 // HTMLHyperlinkElementUtils
145 href: "url", 144 href: "url",
146 145
147 // Obsolete 146 // Obsolete
148 noHref: "boolean" 147 noHref: "boolean"
149 }, 148 },
150 }; 149 };
151 150
152 mergeElements(embeddedElements); 151 mergeElements(embeddedElements);
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698