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

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

Issue 1991613002: Move the html directory from web-platform-tests/ to wpt/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased 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-08.
2 var metadataElements = {
3 head: {},
4 title: {},
5 base: {
6 // XXX href is weird. href: "url",
7 target: "string",
8 },
9 link: {
10 // Conforming
11 href: "url",
12 crossOrigin: {type: "enum", keywords: ["anonymous", "use-credentials"], nonC anon:{"": "anonymous"}, isNullable: true, defaultVal: null, invalidVal: "anonymo us"},
13 rel: "string",
14 relList: {type: "tokenlist", domAttrName: "rel"},
15 media: "string",
16 hreflang: "string",
17 type: "string",
18 sizes: "settable tokenlist",
19
20 // Obsolete
21 charset: "string",
22 rev: "string",
23 target: "string",
24 },
25 meta: {
26 // Conforming
27 name: "string",
28 httpEquiv: {type: "string", domAttrName: "http-equiv"},
29 content: "string",
30
31 // Obsolete
32 scheme: "string",
33 },
34 style: {
35 media: "string",
36 type: "string",
37 scoped: "boolean",
38 },
39 };
40
41 mergeElements(metadataElements);
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698